aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/robertkrimen/otto/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/robertkrimen/otto/Makefile')
-rw-r--r--Godeps/_workspace/src/github.com/robertkrimen/otto/Makefile63
1 files changed, 0 insertions, 63 deletions
diff --git a/Godeps/_workspace/src/github.com/robertkrimen/otto/Makefile b/Godeps/_workspace/src/github.com/robertkrimen/otto/Makefile
deleted file mode 100644
index 8d74038eb..000000000
--- a/Godeps/_workspace/src/github.com/robertkrimen/otto/Makefile
+++ /dev/null
@@ -1,63 +0,0 @@
-.PHONY: test test-race test-release release release-check test-262
-.PHONY: parser
-.PHONY: otto assets underscore
-
-TESTS := \
- ~
-
-TEST := -v --run
-TEST := -v
-TEST := -v --run Test\($(subst $(eval) ,\|,$(TESTS))\)
-TEST := .
-
-test: parser inline.go
- go test -i
- go test $(TEST)
- @echo PASS
-
-parser:
- $(MAKE) -C parser
-
-inline.go: inline
- ./$< > $@
-
-#################
-# release, test #
-#################
-
-release: test-race test-release
- for package in . parser token ast file underscore registry; do (cd $$package && godocdown --signature > README.markdown); done
- @echo \*\*\* make release-check
- @echo PASS
-
-release-check: .test
- $(MAKE) -C test build test
- $(MAKE) -C .test/test262 build test
- @echo PASS
-
-test-262: .test
- $(MAKE) -C .test/test262 build test
- @echo PASS
-
-test-release:
- go test -i
- go test
-
-test-race:
- go test -race -i
- go test -race
-
-#################################
-# otto, assets, underscore, ... #
-#################################
-
-otto:
- $(MAKE) -C otto
-
-assets:
- mkdir -p .assets
- for file in underscore/test/*.js; do tr "\`" "_" < $$file > .assets/`basename $$file`; done
-
-underscore:
- $(MAKE) -C $@
-