Makefile 459 B

12345678910111213141516171819202122232425262728293031323334
  1. # ---------- ---------- ---------- ---------- ---------- ----------
  2. #
  3. # This makefile generates the peers website.
  4. #
  5. # ---------- ---------- ---------- ---------- ---------- ----------
  6. target: help
  7. .PHONY: help
  8. help:
  9. @echo "Usage: make [PHONY]"
  10. @sed -n -e '/sed/! s/\.PHONY: //p' Makefile
  11. .PHONY: build
  12. build:
  13. @zola build
  14. .PHONY: clean
  15. clean:
  16. @rm -rf public
  17. .PHONY: rebuild
  18. rebuild: clean build
  19. .PHONY: serve
  20. serve:
  21. @zola serve --port 8000