PHP/JavaScript webapp to analyse spending habits
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 451B

123456789101112131415
  1. # Makefile for generating minified files
  2. YUICOMPRESSOR_PATH=../yuicompressor-2.3.5.jar
  3. # if you need another compressor path, just copy the above line to a
  4. # file called Makefile.local, customize it and you're good to go
  5. -include Makefile.local
  6. .PHONY: all
  7. # we cheat and process all .js files instead of listing them
  8. all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))
  9. %.min.js: %.js
  10. java -jar $(YUICOMPRESSOR_PATH) $< -o $@