summaryrefslogtreecommitdiff
path: root/Makefile
blob: 8356ec6346809219c524d6e880b645b196070b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
HUGO ?= hugo
PORT ?= 1314

.PHONY: build serve clean

build: clean
	$(HUGO)
	./scripts/publish-raw

serve: build
	$(HUGO) server --disableFastRender --disableLiveReload --port $(PORT)

clean:
	$(RM) -r public resources .hugo_build.lock