shell dot on steroids https://pagure.io/shellfu

Makefile 527B

1234567891011121314151617181920212223242526272829303132333435
  1. # ffoo - Fast Foo - a Bash Library
  2. # See LICENSE file for copyright and license details.
  3. include config.mk
  4. all: options build
  5. options:
  6. @echo ffoo build options:
  7. @echo "VERSION = ${VERSION}"
  8. @echo "STAGE = ${STAGE}"
  9. @echo "PREFIX = ${PREFIX}"
  10. build:
  11. @mkit/make build
  12. manpages: build
  13. @mkit/make build_manpages
  14. test:
  15. @test/runtests
  16. clean:
  17. @mkit/make clean
  18. dist: clean
  19. @mkit/make dist
  20. install: all
  21. @mkit/make install
  22. uninstall:
  23. @mkit/make uninstall
  24. .PHONY: all options clean dist install test uninstall