aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorn-peugnet <n.peugnet@free.fr>2021-10-06 11:37:16 +0200
committern-peugnet <n.peugnet@free.fr>2021-10-06 11:37:59 +0200
commit21a8ea292cc715fd22df7ef52bf6e1675bfc7dc4 (patch)
tree241e2e692f10f3c04a8c3651e9c2e3400e7fafd0
parentfccc89de47a3ed5fc576f28f7f02b1111a59c0c4 (diff)
downloaddna-backup-21a8ea292cc715fd22df7ef52bf6e1675bfc7dc4.tar.gz
dna-backup-21a8ea292cc715fd22df7ef52bf6e1675bfc7dc4.zip
rename buildclean into mostlyclean target in root Makefil
-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)