Version 1
[yaffs-website] / node_modules / throttleit / Makefile
diff --git a/node_modules/throttleit/Makefile b/node_modules/throttleit/Makefile
new file mode 100644 (file)
index 0000000..096ef6c
--- /dev/null
@@ -0,0 +1,18 @@
+
+build: components index.js
+       @component build --dev
+
+components: component.json
+       @component install --dev
+
+clean:
+       rm -fr build components template.js
+
+test: node_modules
+       @./node_modules/mocha/bin/mocha \
+               --reporter spec
+
+node_modules: package.json
+       @npm install
+
+.PHONY: clean