We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aea8e9f commit 3c1e90bCopy full SHA for 3c1e90b
Makefile
@@ -1,15 +1,9 @@
1
# Makefile for generating minified files
2
3
-YUICOMPRESSOR_PATH=../yuicompressor-2.3.5.jar
4
-
5
-# if you need another compressor path, just copy the above line to a
6
-# file called Makefile.local, customize it and you're good to go
7
--include Makefile.local
8
9
.PHONY: all
10
11
# we cheat and process all .js files instead of an exhaustive list
12
all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))
13
14
%.min.js: %.js
15
- java -jar $(YUICOMPRESSOR_PATH) $< -o $@
+ yui-compressor $< -o $@
0 commit comments