mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 10:08:27 +01:00
10 lines
234 B
Makefile
Executable File
10 lines
234 B
Makefile
Executable File
# 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 $@
|