From 471645d24895b8383acff8498b84dd65aab0d9c8 Mon Sep 17 00:00:00 2001 From: n-peugnet Date: Thu, 30 Sep 2021 17:42:43 +0200 Subject: first add of exp and Makefiles --- Makefile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8957aff --- /dev/null +++ b/Makefile @@ -0,0 +1,36 @@ +BIN := dna-backup +SRC := $(shell find . -not \( -path './exp' -prune \) -type f -name '*.go') +V := $(if $(CI),-v) + +# Default installation paths +PREFIX ?= /usr/local +BINDIR = $(DESTDIR)$(PREFIX)/bin + +.PHONY: all +all: build + +.PHONY: build +build: $(BIN) + +$(BIN): $(SRC) + go build $V -o $@ + +.PHONY: clean +clean: + rm -rf $(BIN) + +.PHONY: test +test: + go test $V ./... + +.PHONY: exp +exp: + $(MAKE) -C $@ + +.PHONY: install +install: $(BIN) + install -D $(BIN) $(BINDIR) + +.PHONY: uninstall +uninstall: + -rm -f $(BINDIR)/$(BIN) -- cgit v1.2.3