aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 3305c13..5356b93 100644
--- a/Makefile
+++ b/Makefile
@@ -17,15 +17,15 @@ $(BIN): $(SRC)
go build $V -o $@
.PHONY: clean
-clean: buildclean $(SUBDIRS)
+clean: mostlyclean $(SUBDIRS)
-.PHONY: buildclean
-buildclean:
+.PHONY: mostlyclean
+mostlyclean: $(SUBDIRS)
rm -rf $(BIN)
.PHONY: test
test:
- go test $V ./...
+ go test $V ./...
.PHONY: install
install: $(BIN)