You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
457 B
Makefile
16 lines
457 B
Makefile
# 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 an exhaustive list
|
|
all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))
|
|
|
|
%.min.js: %.js
|
|
java -jar $(YUICOMPRESSOR_PATH) $< -o $@
|