Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3284 vikas 1
# Makefile for generating minified files
2
 
3
.PHONY: all
4
 
5
# we cheat and process all .js files instead of an exhaustive list
6
all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))
7
 
8
%.min.js: %.js
9
	yui-compressor $< -o $@