Makefile.targets 1.0 KB

123456789101112131415161718192021222324252627282930
  1. #
  2. # $Id$
  3. #
  4. #
  5. # Makefile targets that should be treated specially,
  6. # e.g.: non obj/executable affecting targets => don't build dependencies for
  7. # them or don't try any action that would be useful only for generating
  8. # actual code
  9. #
  10. # History:
  11. # --------
  12. # 2008-06-26 initial version (andrei)
  13. #
  14. clean_targets:= clean proper distclean realclean mantainer-clean clean_libs
  15. doc_targets:= modules-doc modules-readme README modules-man man \
  16. install-doc install-modules-doc install-man install-ser-man \
  17. install-modules-man
  18. # auxiliary: maintance, debugging, etc. (don't affect code/objects)
  19. aux_targets:= TAGS tar dist cfg config config.mak print-modules dbg \
  20. dbinstall librpath.lst makecfg.lst
  21. # other targets that don't produce code in the current directory ("external")
  22. ext_targets:= modules libs utils \
  23. install-cfg install-modules install-utils install-modules-all \
  24. install-share
  25. # all the targets that don't require code dependecies in the current dir.
  26. nodep_targets:= $(clean_targets) $(doc_targets) $(aux_targets) $(ext_targets)