mkit.mk 918B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # mkit - Simple Makefile target helper
  2. # See LICENSE file for copyright and license details.
  3. export MKIT_DIR
  4. all: options build
  5. options:
  6. @echo build options:
  7. @echo "VERSION = ${VERSION}"
  8. @echo "PRERELEASE = ${PRERELEASE}"
  9. @echo "DESTDIR = ${DESTDIR}"
  10. @echo "PREFIX = ${PREFIX}"
  11. build:
  12. @$(MKIT_DIR)/make build
  13. manpages: build
  14. @$(MKIT_DIR)/make build_manpages
  15. clean:
  16. @$(MKIT_DIR)/make clean
  17. dist: clean
  18. @$(MKIT_DIR)/make dist
  19. rpmstuff: dist
  20. @$(MKIT_DIR)/make rpmstuff
  21. install: all
  22. @$(MKIT_DIR)/make install
  23. release_x:
  24. @$(MKIT_DIR)/make release_x
  25. release_y:
  26. @$(MKIT_DIR)/make release_y
  27. release_z:
  28. @$(MKIT_DIR)/make release_z
  29. uninstall:
  30. @$(MKIT_DIR)/make uninstall
  31. vbump_x:
  32. @$(MKIT_DIR)/make vbump_x
  33. vbump_y:
  34. @$(MKIT_DIR)/make vbump_y
  35. vbump_z:
  36. @$(MKIT_DIR)/make vbump_z
  37. .PHONY: all options clean dist rpmstuff install uninstall release_x release_y release_z vbump_x vbump_y vbump_z