COMPRESSOR = java -jar build/yuicompressor-2.3.3/build/yuicompressor-2.3.3.jar --nomunge
all: documentation minimize
clean:
	cd ../ && rm *-min.js */*-min.js
documentation:
	cd docs && perl ../JSDoc-1.10.2/jsdoc.pl ../../*/*.js ../../firstclass.js
minimize:
	cd ../ && $(COMPRESSOR) firstclass.js -o firstclass-min.js
	cd ../ && $(COMPRESSOR) apps/Community.js -o apps/Community-min.js
	cd ../ && $(COMPRESSOR) apps/Discussion.js -o apps/Discussion-min.js
	cd ../ && $(COMPRESSOR) apps/Documents.js -o apps/Documents-min.js
	cd ../ && $(COMPRESSOR) apps/Tasks.js -o apps/Tasks-min.js
	cd ../ && $(COMPRESSOR) apps/Wiki.js -o apps/Wiki-min.js
	cd ../ && $(COMPRESSOR) layout/ListView.js -o layout/ListView-min.js
	cd ../ && $(COMPRESSOR) util/DataSource.js -o util/DataSource-min.js
