summaryrefslogtreecommitdiff
path: root/Makefile
blob: 12045f744a1d0fb9cbb05369897e71af67ca8e78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
DESTDIR := artifacts
.PHONY: all debug clean install

all: public

public:
	hugo -D
	cp simple.css/simple.css public/style.css

debug:
	hugo server -D

clean:
	rm -rf artifacts
	rm -rf public
	rm -rf resources
	rm -f .hugo_build.lock

install:
	rm -rf $(DESTDIR)
	cp -r public $(DESTDIR)