10 lines
153 B
Makefile
10 lines
153 B
Makefile
WEBAPP = index.html main.js scribish.ttf style.css
|
|
|
|
all: $(WEBAPP)
|
|
|
|
main.js: src/
|
|
sjw $^ -o $@
|
|
|
|
install: $(WEBAPP)
|
|
mkdir -p $(PREFIX)
|
|
cp $^ $(PREFIX)
|