# ffoo - Fastfoo - Bash dot on steroids # See LICENSE file for copyright and license details. include config.mk all: options build options: @echo ffoo build options: @echo "VERSION = ${VERSION}" @echo "PRERELEASE = ${PRERELEASE}" @echo "PREFIX = ${PREFIX}" build: @mkit/make build manpages: build @mkit/make build_manpages test: @tfkit/runtests clean: @mkit/make clean dist: clean @mkit/make dist install: all @mkit/make install release_x: @mkit/make release_x release_y: @mkit/make release_y release_z: @mkit/make release_z uninstall: @mkit/make uninstall .PHONY: all options clean dist install test uninstall