mkit.mk 741B

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