Makefile.targets 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 maintainer-clean local-clean \
  15. clean-all proper-all distclean-all realclean-all \
  16. clean_cfg clean_modules_cfg clean-modules-cfg \
  17. clean-modules proper-modules realclean-modules \
  18. distclean-modules maintainer-clean-modules \
  19. clean-utils proper-utils realclean-utils distclean-utils \
  20. maintaner-clean-utils \
  21. clean-libs proper-libs realclean-libs distclean-libs \
  22. maintainer-clean-libs \
  23. clean-tmp clean_doxygen
  24. doc_targets:= modules-doc modules-readme README modules-man man \
  25. install-doc install-modules-doc install-man install-ser-man \
  26. install-modules-man
  27. # auxiliary: maintance, debugging, etc. (don't affect code/objects)
  28. aux_targets:= TAGS tar dist cfg-defs cfg config config.mak print-modules \
  29. dbg dbinstall librpath.lst makecfg.lst modules.lst
  30. # other targets that don't produce code in the current directory ("external")
  31. ext_targets:= modules libs utils \
  32. install-cfg install-modules install-utils install-modules-all \
  33. install-share
  34. # all the targets that don't require code dependecies in the current dir.
  35. nodep_targets:= $(clean_targets) $(doc_targets) $(aux_targets) $(ext_targets)