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