From: Rocky Meza Date: Sun, 12 Feb 2012 03:08:41 +0000 (-0700) Subject: clean up makefile a bit X-Git-Tag: 1.5.0~31^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F167%2Fhead;p=thirdparty%2Fmoment.git clean up makefile a bit --- diff --git a/Makefile b/Makefile index 400d818c1..2677eec2b 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,5 @@ LANG_ALL = $(wildcard lang/*.js) MIN_LANG_ALL = $(addprefix min/,$(LANG_ALL)) -LANGTESTS = $(wildcard test/lang/*.js) -TEST_ALL = test/prefix/prefix.js test/non-lang-tests.js test/lang/*.js test/prefix/suffix.js - -MIN_DIR = min/ .PHONY: all @@ -30,7 +26,7 @@ min/lang/%: lang/% node_modules/.bin/uglifyjs -o $@ $< min/lang-all.min.js: $(LANG_ALL) - cat $(LANG_ALL) | node_modules/.bin/uglifyjs -o $@ + cat $^ | node_modules/.bin/uglifyjs -o $@ .PHONY: langs langs: min/lang/ $(MIN_LANG_ALL) min/lang-all.min.js