blob: 7795dd0bc5fa993cf021677b4c2edad3d15a0ce9 (
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
|
#
# 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).
HEAD_OBJ = head-$(PROCESSOR).o
ENTRY_OBJ = entry-$(PROCESSOR).o
O_TARGET := kernel.o
O_OBJS := $(ENTRY_OBJ) ioport.o irq.o process.o ptrace.o signal.o sys_arm.o time.o traps.o
all: lib kernel.o $(HEAD_OBJ) init_task.o
ifeq ($(CONFIG_MODULES),y)
OX_OBJS = armksyms.o
else
O_OBJS += armksyms.o
endif
ifdef CONFIG_ARCH_ACORN
O_OBJS += setup.o ecard.o iic.o
ifdef CONFIG_ARCH_ARC
O_OBJS += oldlatches.o
endif
O_OBJS += dma-$(MACHINE).o
OX_OBJS += dma.o
endif
ifeq ($(MACHINE),ebsa110)
O_OBJS += setup-ebsa110.o dma-dummy.o
endif
ifeq ($(MACHINE),ebsa285)
O_OBJS += dma-dummy.o leds-ebsa285.o setup-ebsa110.o
ifdef CONFIG_PCI
O_OBJS += dec21285.o
endif
endif
ifeq ($(MACHINE),nexuspci)
O_OBJS += setup-ebsa110.o dma-dummy.o
ifdef CONFIG_PCI
O_OBJS += plx9080.o
endif
endif
$(HEAD_OBJ): $(HEAD_OBJ:.o=.S)
$(CC) -D__ASSEMBLY__ -traditional -c $(HEAD_OBJ:.o=.S) -o $@
$(ENTRY_OBJ): $(ENTRY_OBJ:.o=.S)
$(CC) $(CFLAGS) -D__ASSEMBLY__ -c $(ENTRY_OBJ:.o=.S) -o $@
include $(TOPDIR)/Rules.make
$(ENTRY_OBJ): ../lib/constants.h
.PHONY: lib
lib:
$(MAKE) -C ../lib constants.h
|