c83a5af2e97b85d6189cadb09d848af2b042e984
[tpg/acess2.git] / Kernel / arch / x86 / Makefile
1 #
2 # Acess2 Kernel
3 # i386 Architecture Makefile
4 # arch/i386/Makefile
5
6 AS_SUFFIX = asm
7
8 CPPFLAGS        =
9 CFLAGS          =
10 ASFLAGS         = -f elf
11
12 USE_MP=0
13
14 ifeq ($(PLATFORM),default)
15         USE_MP=0
16 else ifeq ($(PLATFORM),smp)
17         USE_MP=1
18 endif
19
20 ASFLAGS += -D USE_MP=$(USE_MP)
21 CPPFLAGS += -DUSE_MP=$(USE_MP)
22
23 A_OBJ  = start.ao main.o lib.o desctab.ao errors.o irq.o
24 A_OBJ += mm_phys.o mm_virt.o
25 A_OBJ += proc.o proc.ao time.o vm8086.o
26 A_OBJ += kpanic.o pci.o

UCC git Repository :: git.ucc.asn.au