source: mainline/arch/ia32/Makefile.inc@ f9e5422

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since f9e5422 was 4f1475d4, checked in by Ondrej Palkovsky <ondrap@…>, 20 years ago

Added preprocessed linker script to AMD architecture, so that
the constants are all only in the header files.

  • Property mode set to 100644
File size: 988 bytes
Line 
1CC=gcc
2AS=as
3LD=ld
4OBJCOPY=objcopy
5BFD_NAME=elf32-i386
6BFD_ARCH=i386
7
8
9DEFS:=-DARCH=$(ARCH)
10
11ifdef SMP
12DEFS+=-D$(SMP)
13endif
14
15ifdef HT
16DEFS+=-D$(HT)
17endif
18
19CPPFLAGS=$(DEFS) -nostdinc -I../include
20CFLAGS=$(CPPFLAGS) -nostdlib -fno-builtin -fomit-frame-pointer -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3
21LFLAGS=-M -no-check-sections
22
23arch_sources= \
24 arch/context.s \
25 arch/debug/panic.s \
26 arch/cpuid.s \
27 arch/delay.s \
28 arch/asm.S \
29 arch/proc/scheduler.c \
30 arch/acpi/acpi.c \
31 arch/acpi/madt.c \
32 arch/bios/bios.c \
33 arch/smp/ap.S \
34 arch/smp/apic.c \
35 arch/smp/mps.c \
36 arch/smp/smp.c \
37 arch/atomic.S \
38 arch/smp/ipi.c \
39 arch/ia32.c \
40 arch/interrupt.c \
41 arch/pm.c \
42 arch/userspace.c \
43 arch/cpu/cpu.c \
44 arch/mm/frame.c \
45 arch/mm/memory_init.c \
46 arch/mm/page.c \
47 arch/mm/tlb.c \
48 arch/drivers/i8042.c \
49 arch/drivers/i8254.c \
50 arch/drivers/i8259.c \
51 arch/drivers/ega.c \
52 arch/boot/boot.S \
53 arch/boot/memmap.S\
54 arch/fpu_context.c\
55 arch/fmath.c
Note: See TracBrowser for help on using the repository browser.