- Registro, activación y entrada de usuarios git-svn-id: https://192.168.0.254/svn/Rodax.factuges_web/trunk@2 e455b18d-f7fe-5245-9c43-e2c35af70a32
10 lines
234 B
Makefile
10 lines
234 B
Makefile
# Makefile for generating minified files
|
|
|
|
.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
|
|
yui-compressor $< -o $@
|