0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-22 15:23:29 -05:00
Squire/Makefile

14 lines
260 B
Makefile
Raw Normal View History

2011-10-28 22:15:21 -05: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 $^ $@