]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Makefile.global
php_closing_tag [PSR-2] The closing ?> tag MUST be omitted from files containing...
[SourceForge/phpwiki.git] / themes / Makefile.global
1 # $Id$
2 #
3 # themes/Makefile.global
4 #
5 # minify themes, for gnu make only
6
7 .PHONY: all css js
8
9 THEMES = default MonoBook wikilens Sidebar SpaceWiki blog MacOSX fusionforge
10
11 # http://developer.yahoo.com/yui/compressor/
12 YUICOMPRESSOR = java -jar ../default/yuicompressor-2.4.7.jar
13
14 css: $(CSS_FILES)
15
16 js:  $(MAIN)-min.js $(patsubst %.js,%-min.js,$(JS_REST)) 
17
18 clean:
19         rm $(MAIN)-min.js $(patsubst %.js,%-min.js,$(JS_REST)) $(CSS_FILES) 
20
21 $(MAIN)-min.js : $(JS_MAIN)
22         $(YUICOMPRESSOR) -o $@ $(JS_MAIN)
23
24 %-min.css : %.css
25         $(YUICOMPRESSOR) -o $@ $<
26
27 %-min.js : %.js
28         $(YUICOMPRESSOR) -o $@ $<
29
30 IEFixes-min.js : IEFixes.js
31         $(YUICOMPRESSOR) $< | sed -e's,style.floats,style.float,g' > $@