0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2025-03-09 22:21:35 -05:00
Squire/Makefile

14 lines
260 B
Makefile
Raw Normal View History

2011-10-29 14:15:21 +11:00
.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 $^ $@