isso/Makefile
posativ 26c74cb521 admin.js now used isso.js as API
JS is a horrible language. The more you try to modularize and DRY
it, the greater the LoC grows...
2012-12-17 00:06:46 +01:00

22 lines
594 B
Makefile

ISSO = "isso/js"
all: admin client
init:
git clone https://github.com/posativ/promisejs.git $(ISSO)/promise.js
(cd $(ISSO) && ender build jeesh)
(cd $(ISSO) && ender add promise.js)
rm -rf $(ISSO)/promise.js
admin:
cat $(ISSO)/ender.js $(ISSO)/isso.js $(ISSO)/utils.js $(ISSO)/admin.js > $(ISSO)/_.js
yuicompressor --type js --charset utf-8 $(ISSO)/_.js -o $(ISSO)/interface.js
rm $(ISSO)/_.js
client:
cat $(ISSO)/ender.js $(ISSO)/isso.js $(ISSO)/utils.js $(ISSO)/client.js > $(ISSO)/_.js
yuicompressor --type js --charset utf-8 $(ISSO)/_.js -o $(ISSO)/embed.js
rm $(ISSO)/_.js