2 # linux/arch/arm/boot/bootp/Makefile
4 # This file is included by the global makefile so that you can add your own
5 # architecture-specific flags and dependencies.
8 LDFLAGS_bootp
:=-p
--no-undefined
-X \
9 --defsym initrd_phys
=$(INITRD_PHYS
) \
10 --defsym params_phys
=$(PARAMS_PHYS
) -T
11 AFLAGS_initrd.o
:=-DINITRD
=\"$(INITRD
)\"
13 targets
:= bootp init.o kernel.o initrd.o
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
20 # kernel.o and initrd.o includes a binary image using
21 # .incbin, a dependency which is not tracked automatically
23 $(obj
)/kernel.o
: arch
/arm
/boot
/zImage FORCE
25 $(obj
)/initrd.o
: $(INITRD
) FORCE
27 PHONY
+= $(INITRD
) FORCE