# ffoo - Fastfoo - Bash dot on steroids # 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 "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 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 .PHONY: all options clean dist install uninstall release_x release_y release_z