Makefile 234 Bytes
Newer Older
1 2 3 4
# Makefile for generating minified files

.PHONY: all

5
# we cheat and process all .js files instead of an exhaustive list
6 7 8
all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))

%.min.js: %.js
9
	yui-compressor $< -o $@