Constellations/Makefile

14 lines
208 B
Makefile
Raw Normal View History

2022-07-22 22:35:28 +02:00
LIB = unitJS
WEBAPP = index.html style.css main.js
all: $(WEBAPP)
style.css: css
find $^ -type f -name '*.css' | xargs cat > $@
main.js: js/
sjw $(LIB:%=-I %) -o $@ $^
install:
cp $(WEBAPP) $(DESTDIR)