0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-22 07:13:08 -05:00
Squire/Makefile
2011-10-29 14:15:21 +11:00

14 lines
No EOL
260 B
Makefile

.PHONY: build clean
clean:
rm -rf build
build: build/squire.js build/document.html
build/squire.js: source/Node.js source/Range.js source/Editor.js
mkdir -p $(@D)
cat $^ | uglifyjs > $@
build/document.html: source/document.html
mkdir -p $(@D)
cp $^ $@