Blame | Last modification | View Log | RSS feed
# Makefile for generating minified files.PHONY: all# we cheat and process all .js files instead of an exhaustive listall: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))%.min.js: %.jsyui-compressor $< -o $@