Makefile 743 B

123456789101112131415161718192021222324
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. # GNU make and BSD make compatible make file wrapper
  4. MAKECMDGOALS+= ${.TARGETS}
  5. PHONY_TARGETS= all v \
  6. allmodconfig allnoconfig allyesconfig \
  7. help pkg-help dev-help targethelp \
  8. kernelconfig savekconfig \
  9. image \
  10. menuconfig defconfig oldconfig \
  11. download \
  12. clean cleankernel cleansystem cleandir distclean hostclean \
  13. hostpackage fetch package extract patch \
  14. dep menu \
  15. newpackage \
  16. host-update-patches update-patches \
  17. info
  18. ${PHONY_TARGETS}:
  19. @./scripts/prereq.sh ${MAKECMDGOALS}
  20. .PHONY: ${PHONY_TARGETS}