da0c6a2ea1
Dunno when this problem with randomized IDs arose. But it's fixed now. Also, sync with latest SVG-Edit.
51 lines
2.1 KiB
Makefile
51 lines
2.1 KiB
Makefile
NAME=svg-edit
|
|
VERSION=2.5
|
|
PACKAGE=$(NAME)-$(VERSION)
|
|
MAKEDOCS=naturaldocs/NaturalDocs
|
|
CLOSURE=build/tools/closure-compiler.jar
|
|
YUICOMPRESS=build/tools/yuicompressor.jar
|
|
ZIP=zip
|
|
|
|
all: release firefox opera
|
|
|
|
build/$(PACKAGE):
|
|
rm -rf config
|
|
mkdir config
|
|
if [ -x $(MAKEDOCS) ] ; then $(MAKEDOCS) -i editor/ -o html docs/ -p config/ -oft -r ; fi
|
|
mkdir -p build/$(PACKAGE)
|
|
cp -r editor/* build/$(PACKAGE)
|
|
-find build/$(PACKAGE) -name .svn -type d -exec rm -rf {} \;
|
|
# minify spin button
|
|
java -jar $(YUICOMPRESS) build/$(PACKAGE)/spinbtn/JQuerySpinBtn.js > build/$(PACKAGE)/spinbtn/JQuerySpinBtn.min.js
|
|
java -jar $(CLOSURE) --js build/$(PACKAGE)/spinbtn/JQuerySpinBtn.js --js_output_file build/$(PACKAGE)/spinbtn/JQuerySpinBtn.min-closure.js
|
|
# minify SVG-edit files
|
|
java -jar $(YUICOMPRESS) build/$(PACKAGE)/svg-editor.js > build/$(PACKAGE)/svg-editor.min.js
|
|
java -jar $(CLOSURE) --js build/$(PACKAGE)/svg-editor.js --js_output_file build/$(PACKAGE)/svg-editor.min-closure.js
|
|
java -jar $(YUICOMPRESS) build/$(PACKAGE)/svgcanvas.js > build/$(PACKAGE)/svgcanvas.min.js
|
|
java -jar $(CLOSURE) --js build/$(PACKAGE)/svgcanvas.js --js_output_file build/$(PACKAGE)/svgcanvas.min-closure.js
|
|
# CSS files do not work remotely
|
|
# java -jar $(YUICOMPRESS) build/$(PACKAGE)/spinbtn/JQuerySpinBtn.css > build/$(PACKAGE)/spinbtn/JQuerySpinBtn.min.css
|
|
# java -jar $(YUICOMPRESS) build/$(PACKAGE)/svg-editor.css > build/$(PACKAGE)/svg-editor.min.css
|
|
|
|
release: build/$(PACKAGE)
|
|
cd build ; $(ZIP) $(PACKAGE).zip -r $(PACKAGE) ; cd ..
|
|
|
|
firefox: build/$(PACKAGE)
|
|
mkdir -p build/firefox/content/editor
|
|
cp -r firefox-extension/* build/firefox
|
|
rm -rf build/firefox/content/.svn
|
|
cp -r build/$(PACKAGE)/* build/firefox/content/editor
|
|
cd build/firefox ; $(ZIP) ../$(PACKAGE).xpi -r * ; cd ../..
|
|
|
|
opera: build/$(PACKAGE)
|
|
mkdir -p build/opera/editor
|
|
cp opera-widget/* build/opera
|
|
cp -r build/$(PACKAGE)/* build/opera/editor
|
|
cd build/opera ; $(ZIP) ../$(PACKAGE).wgt -r * ; cd ../..
|
|
|
|
clean:
|
|
rm -rf config
|
|
rm -rf build/$(PACKAGE)
|
|
rm -rf build/firefox
|
|
rm -rf build/opera
|