OSDN Git Service

add package
[bytom/vapor.git] / vendor / github.com / multiformats / go-multihash / test / Makefile
diff --git a/vendor/github.com/multiformats/go-multihash/test/Makefile b/vendor/github.com/multiformats/go-multihash/test/Makefile
new file mode 100644 (file)
index 0000000..97ec5b6
--- /dev/null
@@ -0,0 +1,17 @@
+all: deps
+
+deps:
+       cd sharness && make deps
+
+clean:
+       cd sharness && make clean
+
+test: test_expensive
+
+test_expensive:
+       cd sharness && make TEST_EXPENSIVE=1
+
+test_cheap:
+       cd sharness && make
+
+.PHONY: all clean