7 lines
109 B
Makefile
7 lines
109 B
Makefile
|
.PHONY: all default build dev
|
||
|
build: ; hugo
|
||
|
public: build
|
||
|
dev: ; hugo serve
|
||
|
all: build
|
||
|
clean: ; rm -r public
|