gnu-social/js/Makefile
Brion Vibber 19a3b28898 Remove json2 author's "don't hotlink my script pls" alert line from our local copy of json2.js :D
Added json2.min.js to the makefile so it can be updated easily when json2.js changes.
2011-01-05 09:39:36 -08:00

16 lines
260 B
Makefile

.fake: all clean
TARGETS=util.min.js json2.min.js
UTIL_SOURCES=util.js xbImportNode.js geometa.js
all: $(TARGETS)
clean:
rm -f $(TARGETS)
util.min.js: $(UTIL_SOURCES)
cat $+ | yui-compressor --type js > $@
json2.min.js: json2.js
yui-compressor $+ > $@