Makefile 370 B

1234567891011121314151617
  1. compile_and_run: html serve
  2. html:
  3. guix environment -l guix.scm -- haunt build
  4. serve:
  5. guix environment -l guix.scm -- haunt serve --watch
  6. upload: html
  7. rsync --delete --recursive --verbose \
  8. site/ dustycloud:/srv/dustycloud/git_checkout/output
  9. serve-any: html
  10. guix environment -l guix.scm -- haunt serve --watch --host=any
  11. .PHONY: html serve upload serve-any