UNPKG

417 BPlain TextView Raw
1
2SRC = $(shell find lib -name "*.js")
3TM_BUNDLE = editors/Stylus.tmbundle
4TM_BUNDLE_DEST = ~/Library/Application\ Support/TextMate/Bundles
5
6test: test-integration
7
8test-integration:
9 @node test/run.js
10
11install-bundle:
12 cp -fr $(TM_BUNDLE) $(TM_BUNDLE_DEST)
13
14update-bundle:
15 cp -fr $(TM_BUNDLE_DEST)/Stylus.tmbundle editors
16
17benchmark:
18 @node bm.js
19
20.PHONY: test test-integration install-bundle update-bundle benchmark
\No newline at end of file