15 lines
258 B
Makefile
15 lines
258 B
Makefile
LIB = unitJS
|
|
WEBAPP = index.html style.css main.js
|
|
ROOT = $(PREFIX)/var/www
|
|
|
|
all: $(WEBAPP)
|
|
|
|
style.css: css
|
|
find $^ -type f -name '*.css' | xargs cat > $@
|
|
|
|
main.js: js/
|
|
sjw $(LIB:%=-I %) -o $@ $^
|
|
|
|
install: $(WEBAPP)
|
|
mkdir -p $(ROOT)
|
|
cp $(WEBAPP) $(ROOT)
|