summaryrefslogtreecommitdiffstats
path: root/arch/i386/kernel/Makefile
blob: 56db72ef82fbe46c49b294009367f30363628294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile...

.S.o:
	$(CC) $(AFLAGS) -traditional -c $< -o $*.o

all: kernel.o head.o init_task.o

O_TARGET := kernel.o
O_OBJS   := process.o semaphore.o signal.o entry.o traps.o irq.o vm86.o \
	    ptrace.o i8259.o ioport.o ldt.o setup.o time.o sys_i386.o \
	    pci-dma.o
OX_OBJS  := i386_ksyms.o
MX_OBJS  :=

ifdef CONFIG_PCI
O_OBJS += pci-i386.o
ifdef CONFIG_VISWS
O_OBJS += pci-visws.o
else
O_OBJS += pci-pc.o pci-irq.o
endif
endif

ifdef CONFIG_MCA
OX_OBJS += mca.o
endif

ifeq ($(CONFIG_MTRR),y)
OX_OBJS += mtrr.o
else
  ifeq ($(CONFIG_MTRR),m)
  MX_OBJS += mtrr.o
  endif
endif

ifeq ($(CONFIG_MICROCODE),y)
OX_OBJS += microcode.o
else
  ifeq ($(CONFIG_MICROCODE),m)
  MX_OBJS += microcode.o
  endif
endif

ifeq ($(CONFIG_ACPI),y)
O_OBJS += acpi.o
else
  ifeq ($(CONFIG_ACPI),m)
  M_OBJS += acpi.o
  endif
endif

ifeq ($(CONFIG_APM),y)
O_OBJS += apm.o
else
  ifeq ($(CONFIG_APM),m)
  M_OBJS += apm.o
  endif
endif

ifdef CONFIG_SMP
O_OBJS += smp.o smpboot.o trampoline.o
endif

ifdef CONFIG_X86_LOCAL_APIC
O_OBJS += apic.o
endif

ifdef CONFIG_X86_IO_APIC
O_OBJS += io_apic.o mpparse.o
endif

ifdef CONFIG_X86_VISWS_APIC
O_OBJS += visws_apic.o
endif

include $(TOPDIR)/Rules.make