From 21a8ea292cc715fd22df7ef52bf6e1675bfc7dc4 Mon Sep 17 00:00:00 2001 From: n-peugnet Date: Wed, 6 Oct 2021 11:37:16 +0200 Subject: rename buildclean into mostlyclean target in root Makefil --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.3