# ffoo - Fast Foo - a Bash Library # See LICENSE file for copyright and license details. include config.mk all: options doc build options: @echo ffoo build options: @echo "VERSION = ${VERSION}" @echo "STAGE = ${STAGE}" @echo "PREFIX = ${PREFIX}" build: @setup/mk.sh build doc: @setup/mk.sh doc install_manpages: manpages @setup/mk.sh install_manpages manpages: build @setup/mk.sh manpages test: install @setup/mk.sh test clean: @setup/mk.sh clean dist: clean @setup/mk.sh dist install: all @setup/mk.sh install uninstall: @setup/mk.sh uninstall .PHONY: all options clean dist install test uninstall