From f93ce30018f620c833c2c65727943f772ee1bb77 Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Thu, 28 Jul 2016 14:16:47 +0100 Subject: [PATCH] make: squash install, build and nofuse rules License: MIT Signed-off-by: Jakub Sztandera --- Makefile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index e9a9eb28a..eeeca750b 100644 --- a/Makefile +++ b/Makefile @@ -57,14 +57,8 @@ deps: go_check gx_check path_check vendor: godep godep save -r ./... -install: deps - $(MAKE) -C cmd/ipfs install - -build: deps - $(MAKE) -C cmd/ipfs build - -nofuse: deps - $(MAKE) -C cmd/ipfs nofuse +install build nofuse: deps + $(MAKE) -C cmd/ipfs $@ clean: $(MAKE) -C cmd/ipfs clean