123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # mkit - Simple Makefile target helper
- # See LICENSE file for copyright and license details.
-
- export MKIT_DIR
-
- all: options build
-
- options:
- @echo build options:
- @echo "VERSION = ${VERSION}"
- @echo "PRERELEASE = ${PRERELEASE}"
- @echo "DESTDIR = ${DESTDIR}"
- @echo "PREFIX = ${PREFIX}"
-
- build:
- @$(MKIT_DIR)/make build
-
- manpages: build
- @$(MKIT_DIR)/make build_manpages
-
- clean:
- @$(MKIT_DIR)/make clean
-
- dist: clean
- @$(MKIT_DIR)/make dist
-
- rpmstuff: dist
- @$(MKIT_DIR)/make rpmstuff
-
- install: all
- @$(MKIT_DIR)/make install
-
- release_x:
- @$(MKIT_DIR)/make release_x
-
- release_y:
- @$(MKIT_DIR)/make release_y
-
- release_z:
- @$(MKIT_DIR)/make release_z
-
- uninstall:
- @$(MKIT_DIR)/make uninstall
-
- vbump_x:
- @$(MKIT_DIR)/make vbump_x
-
- vbump_y:
- @$(MKIT_DIR)/make vbump_y
-
- vbump_z:
- @$(MKIT_DIR)/make vbump_z
-
- .PHONY: all options clean dist rpmstuff install uninstall release_x release_y release_z vbump_x vbump_y vbump_z
|