specify new dep in sharenss Makefile
Henry committed
Mar 4, 2015 at 15:06 UTC
aa745fef07056bc25cf4759bfff9ab1a6ef11a5d
2 files changed
+2
-2
test/Makefile
+1
-1
@@ -24,7 +24,7 @@ bin/multihash: $(MULTIHASH_SRC)/**/*.go
24
bin/ipfs: $(IPFS_ROOT)/**/*.go
25
go build -o bin/ipfs $(IPFS_CMD)
26
27
-bin/pollEndpoint: $(POLLENDPOINT_SRC)/*.go
27
+bin/pollEndpoint: $(POLLENDPOINT_SRC)/*.go
28
go build -o bin/pollEndpoint $(POLLENDPOINT_SRC)
29
30
test: test_expensive
test/sharness/Makefile
+1
-1
@@ -7,7 +7,7 @@
7
# NOTE: run with TEST_VERBOSE=1 for verbose sharness tests.
8
9
T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh))
10
-BINS = bin/random bin/multihash bin/ipfs
10
+BINS = bin/random bin/multihash bin/ipfs bin/pollEndpoint
11
SHARNESS = lib/sharness/sharness.sh
12
IPFS_ROOT = ../..
13