13 lines
130 B
Makefile
13 lines
130 B
Makefile
THEME := themes/huell
|
|
|
|
.PHONY: all theme hugo
|
|
|
|
all: theme hugo
|
|
|
|
theme:
|
|
cd $(THEME) && \
|
|
nix develop --command make
|
|
|
|
hugo:
|
|
hugo
|