X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=js%2FMakefile;h=2f3dfcdf70ff253a3e294105028c6e95d72a0267;hb=bb087a965009fd93a5c02a9e10ab90adcc6b7963;hp=00e43471416e78b4e20d2e1aee2977fe815844b5;hpb=9a6ceb3303a98d1c5fba3587f32d0377e55062cc;p=quix0rs-gnu-social.git diff --git a/js/Makefile b/js/Makefile index 00e4347141..2f3dfcdf70 100644 --- a/js/Makefile +++ b/js/Makefile @@ -1,11 +1,15 @@ .fake: all clean -TARGETS=util.min.js +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.js - yui-compressor $< -o $@ +util.min.js: $(UTIL_SOURCES) + cat $+ | yui-compressor --type js > $@ + +json2.min.js: json2.js + yui-compressor $+ > $@