/arch/ppc/boot/Makefile

https://bitbucket.org/evzijst/gittest · Makefile · 34 lines · 14 code · 8 blank · 12 comment · 0 complexity · 8f8ca7658ed2e6eac9bf0e3691a8088a MD5 · raw file

  1. #
  2. # arch/ppc/boot/Makefile
  3. #
  4. # This file is subject to the terms and conditions of the GNU General Public
  5. # License. See the file "COPYING" in the main directory of this archive
  6. # for more details.
  7. #
  8. # Copyright (C) 1994 by Linus Torvalds
  9. # Adapted for PowerPC by Gary Thomas
  10. # modified by Cort (cort@cs.nmt.edu)
  11. #
  12. CFLAGS += -fno-builtin -D__BOOTER__ -Iarch/$(ARCH)/boot/include
  13. HOSTCFLAGS += -Iarch/$(ARCH)/boot/include
  14. BOOT_TARGETS = zImage zImage.initrd znetboot znetboot.initrd
  15. bootdir-y := simple
  16. bootdir-$(CONFIG_PPC_OF) += openfirmware
  17. subdir-y := lib common images
  18. subdir-$(CONFIG_PPC_OF) += of1275
  19. # for cleaning
  20. subdir- += simple openfirmware
  21. hostprogs-y := $(addprefix utils/, addnote mknote hack-coff mkprep mkbugboot mktree)
  22. .PHONY: $(BOOT_TARGETS) $(bootdir-y)
  23. $(BOOT_TARGETS): $(bootdir-y)
  24. $(bootdir-y): $(addprefix $(obj)/,$(subdir-y)) \
  25. $(addprefix $(obj)/,$(hostprogs-y))
  26. $(Q)$(MAKE) $(build)=$(obj)/$@ $(MAKECMDGOALS)