blob: 8ce3e8c2c8c59069ded0f20ca28968099fb52dd4 (
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
cp simple.css/simple.css public/style.css
debug:
hugo server
clean:
rm -rf artifacts
rm -rf public
rm -rf resources
rm -f .hugo_build.lock
install:
rm -rf $(DESTDIR)
cp -r public $(DESTDIR)
|