@cryptotaxi247 / kubo / commits / 87c561b2c

Makefile: test makes sure it can build

Juan Batiz-Benet committed Jan 6, 2015 at 13:41 UTC 87c561b2cff5a6e20444a54c3feed90926cde44e
1 file changed +5 -2
Makefile
+5 -2
@@ -13,14 +13,17 @@ vendor: godep
13 install:
14 cd cmd/ipfs && go install
15
16 +build:
17 + cd cmd/ipfs && go build
18 +
19 ##############################################################
20 # tests targets
21
22 test: test_expensive
23
21 -test_short: test_go_short test_sharness_short
24 +test_short: build test_go_short test_sharness_short
25
23 -test_expensive: test_go_expensive test_sharness_expensive
26 +test_expensive: build test_go_expensive test_sharness_expensive
27
28 test_docker:
29 cd dockertest/ && make