Files
rippled/examples/broadcast_server_tls/vendor/flot/Makefile
Vinnie Falco 128e6a4125 Squashed 'src/websocket/' content from commit b439cd1
git-subtree-dir: src/websocket
git-subtree-split: b439cd1ee99f319eb1464f7b44923ce96245735d
2013-09-11 09:58:50 -07:00

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 $@