Constellations/Makefile

14 lines
208 B
Makefile

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)