blob: c394e305447c504ed3884a6e894c35afad48eb42 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# linux/arch/arm/boot/bootp/Makefile
3#
Paul Smith4f193362006-03-05 17:14:10 -05004# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8LDFLAGS_bootp :=-p --no-undefined -X \
9 --defsym initrd_phys=$(INITRD_PHYS) \
10 --defsym params_phys=$(PARAMS_PHYS) -T
11AFLAGS_initrd.o :=-DINITRD=\"$(INITRD)\"
12
13targets := bootp init.o kernel.o initrd.o
14
15# Note that bootp.lds picks up kernel.o and initrd.o
16$(obj)/bootp: $(src)/bootp.lds $(addprefix $(obj)/,init.o kernel.o initrd.o) FORCE
17 $(call if_changed,ld)
18 @:
19
20# kernel.o and initrd.o includes a binary image using
21# .incbin, a dependency which is not tracked automatically
22
23$(obj)/kernel.o: arch/arm/boot/zImage FORCE
24
25$(obj)/initrd.o: $(INITRD) FORCE
26
Paul Smith4f193362006-03-05 17:14:10 -050027PHONY += $(INITRD) FORCE