makefile 522 B

1234567891011121314151617181920212223242526
  1. # ---------- ---------- ---------- ---------- ---------- ----------
  2. #
  3. # This makefile generates sins.
  4. #
  5. # ---------- ---------- ---------- ---------- ---------- ----------
  6. ProjectName=sins
  7. all: build
  8. # ---------- ---------- ---------- ---------- ---------- ----------
  9. # NOTE: The remaining recipes follow:
  10. # ---------- ---------- ---------- ---------- ---------- ----------
  11. build:
  12. stack build
  13. run:
  14. @echo INFO: Using defaults
  15. @stack exec $(ProjectName)
  16. clean:
  17. @rm -r .stack-work/
  18. .PHONY: all clean build run