aboutsummaryrefslogtreecommitdiffhomepage
path: root/node_modules/component-inherit/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/component-inherit/Makefile')
-rw-r--r--node_modules/component-inherit/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/node_modules/component-inherit/Makefile b/node_modules/component-inherit/Makefile
new file mode 100644
index 0000000..ebbc52a
--- /dev/null
+++ b/node_modules/component-inherit/Makefile
@@ -0,0 +1,16 @@
+
+build: components index.js
+ @component build
+
+components:
+ @Component install
+
+clean:
+ rm -fr build components template.js
+
+test:
+ @node_modules/.bin/mocha \
+ --require should \
+ --reporter spec
+
+.PHONY: clean test