From f8fb68e7306aa61e8f7e9bd496f10469f00a8388 Mon Sep 17 00:00:00 2001 From: Rocky Meza Date: Sat, 11 Feb 2012 20:08:41 -0700 Subject: [PATCH] clean up makefile a bit --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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 -- 2.47.2