Makefile (1da177e4c3f41524e886b7f1b8a0c1fc7321cac2) | Makefile (bce495d865829d7a1d8102a834d3e3af32616567) |
---|---|
1# 2# Makefile for the linux kernel. 3# 4 5AFLAGS_head.o := -DTEXTADDR=$(TEXTADDR) -DDATAADDR=$(DATAADDR) 6 7# Object file lists. 8 --- 17 unchanged lines hidden (view full) --- 26ifneq ($(CONFIG_ARCH_EBSA110),y) 27 obj-y += io.o 28endif 29 30head-y := head.o 31obj-$(CONFIG_DEBUG_LL) += debug.o 32 33extra-y := $(head-y) init_task.o vmlinux.lds | 1# 2# Makefile for the linux kernel. 3# 4 5AFLAGS_head.o := -DTEXTADDR=$(TEXTADDR) -DDATAADDR=$(DATAADDR) 6 7# Object file lists. 8 --- 17 unchanged lines hidden (view full) --- 26ifneq ($(CONFIG_ARCH_EBSA110),y) 27 obj-y += io.o 28endif 29 30head-y := head.o 31obj-$(CONFIG_DEBUG_LL) += debug.o 32 33extra-y := $(head-y) init_task.o vmlinux.lds |
34 35# Spell out some dependencies that aren't automatically figured out 36$(obj)/entry-armv.o: $(obj)/entry-header.S include/asm-arm/constants.h 37$(obj)/entry-common.o: $(obj)/entry-header.S include/asm-arm/constants.h \ 38 $(obj)/calls.S | |