Sha256: 140148795082b10553a82b10082a25b540b58318a90240fc0dabb73388e7a84a
Contents?: true
Size: 451 Bytes
Versions: 35
Compression:
Stored size: 451 Bytes
Contents
# Makefile for generating minified files YUICOMPRESSOR_PATH=../yuicompressor-2.3.5.jar # if you need another compressor path, just copy the above line to a # file called Makefile.local, customize it and you're good to go -include Makefile.local .PHONY: all # we cheat and process all .js files instead of listing them all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js))) %.min.js: %.js java -jar $(YUICOMPRESSOR_PATH) $< -o $@
Version data entries
35 entries across 35 versions & 3 rubygems