diff options
author | bd <bdunahu@operationnull.com> | 2024-07-14 17:16:52 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-07-14 17:31:28 -0600 |
commit | 733194e8567bc495db88de9b0ae1b228d59572fe (patch) | |
tree | ec371e8e393dbda41f24b3f355876b726fc2e8b2 /Makefile |
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ff35e6d --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +GUILE=guix shell guile haunt -- guile + +serve: + ${GUILE} -c '((@ (haunt serve web-server) serve) "target/")' + +site: + ${GUILE} -L ./src -c \ + '((@ (haunt site) build-site) (@ (operationnull site) main-site))' + +clean: + rm -rf target/ |