e93346ffa9
Now that all templates are provided by plugins, there's no need to have a public/ directory. Themes can be in /themes instead of /public/themes.
9 lines
211 B
Makefile
9 lines
211 B
Makefile
SRHT_PATH?=/usr/lib/python3.8/site-packages/srht
|
|
|
|
assets/style.css: scss/*.scss ${SRHT_PATH}/scss/*.scss
|
|
@mkdir -p assets/
|
|
sassc -I${SRHT_PATH}/scss scss/main.scss $@
|
|
|
|
all: assets/style.css
|
|
|
|
.DEFAULT_GOAL=all
|