19 lines
283 B
Makefile
19 lines
283 B
Makefile
.PHONY: all theme hugo dev clean
|
|
|
|
THEME := themes/caldwell
|
|
|
|
all: hugo
|
|
|
|
theme:
|
|
cd $(THEME) && \
|
|
nix develop --command make
|
|
|
|
hugo: theme
|
|
hugo
|
|
|
|
dev: theme
|
|
hugo server -D --disableFastRender
|
|
|
|
clean:
|
|
rm -rf public resources/_gen assets/jsconfig.json hugo_stats.json .hugo_build.lock
|