local resources for generator style

This commit is contained in:
Carlos Galindo 2026-01-23 20:49:33 +01:00
commit 2bf763c893
11 changed files with 234 additions and 5 deletions

View file

@ -6,7 +6,7 @@ PY_SRC := $(wildcard src/**.py)
all: generador_public generador_public/index.html static generador_public/res/canciones
static: $(ALL_STATIC)
static: $(ALL_STATIC) generador_public/main.css generador_public/song.css
generador_public:
mkdir generador_public
@ -20,6 +20,9 @@ generador_public/index.html: $(ALL_TEMPLATES) $(PY_SRC)
--other-latex latex/canciones/ \
--author NONE --title NONE
generador_public/%.css: res_gen/less/%.less res/less/colors.less
lessc $< $@
generador_public/%: res_gen/static/%
cp -ra $< $@