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