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

all: public

public:
	hugo

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)