diff options
author | xengineering <me@xengineering.eu> | 2022-05-28 21:06:42 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-05-28 21:06:42 +0200 |
commit | 2a39715d3008c82dcc5a381b7f1386de04d0fb19 (patch) | |
tree | e73c5650c605d28baed5dfd626761142615efac7 /Makefile | |
parent | fe23539b58e1ccfd1dc3a256ff8ebb253528b517 (diff) | |
download | website-2a39715d3008c82dcc5a381b7f1386de04d0fb19.tar website-2a39715d3008c82dcc5a381b7f1386de04d0fb19.tar.zst website-2a39715d3008c82dcc5a381b7f1386de04d0fb19.zip |
Add basic Makefile
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..00b975e --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ + +.PHONY: clean + +all: + mkdir -p public + hugo --destination public + +clean: + rm -rf public + rm -f .hugo_build.lock + |