mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
git-subtree-dir: src/websocket git-subtree-split: b439cd1ee99f319eb1464f7b44923ce96245735d
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 $@
|