From f640a1bde09868a159709924131d74c9ce3e66f3 Mon Sep 17 00:00:00 2001 From: Paul Battley Date: Fri, 1 Apr 2011 16:29:06 +0100 Subject: [PATCH] Makefile isn't useful for this project. --- Makefile | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 97262f8..0000000 --- a/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -.PHONY: all lint test loc - -SRC_ROOT=. -TEST_ROOT=./test - -all: lint test - -lint: - @find $(SRC_ROOT) -name '*.js' -exec sh -c 'echo {}; jslint {}' \; - -test: - @find $(TEST_ROOT) -name 'test-*.js' -exec nodeunit {} \; - -loc: - @grep -r --binary-files=without-match . $(SRC_ROOT) | wc -l | xargs -I_ echo _ LoC