diff options
author | xengineering <me@xengineering.eu> | 2022-05-30 20:09:12 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-05-30 20:09:12 +0200 |
commit | 0594100b0d382af79d989be67f6bb82c808180c9 (patch) | |
tree | 63796b77fa29226e2ee96226d8af517339955188 /Makefile | |
parent | 743b28624f2056c781220f709e52333f74533f6d (diff) | |
download | website-0594100b0d382af79d989be67f6bb82c808180c9.tar website-0594100b0d382af79d989be67f6bb82c808180c9.tar.zst website-0594100b0d382af79d989be67f6bb82c808180c9.zip |
Add debug target in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,10 +1,13 @@ -.PHONY: clean +.PHONY: all debug clean all: mkdir -p public hugo -D +debug: + hugo server -D + clean: rm -rf public rm -rf resources |