From 34b8d8ff1f9d65c08a9156d72f08cf548183c6f4 Mon Sep 17 00:00:00 2001 From: JP Appel Date: Sun, 27 Apr 2025 00:49:27 -0400 Subject: Large commit; many features --- makefile | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..bdbab30 --- /dev/null +++ b/makefile @@ -0,0 +1,39 @@ +BINS := atlas +SRC := $(wildcard cmd/*.go) $(wildcard pkg/*/*.go) +INSTALL_PATH := ~/.local/bin + +.PHONY: all install uninstall test info clean + +all: $(BINS) + +atlas: $(SRC) + go build -o $@ ./cmd/atlas.go + + +test: + go test ./... + +######## +# +######## + +install: $(INSTALL_PATH)/atlas + +$(INSTALL_PATH)/atlas: atlas + cp atlas $(INSTALL_PATH) + +uninstall: $(INSTALL_PATH)/atlas + rm $< + +######## +# +######## + +info: + @echo "SRC: $(SRC)" + @echo "BINS: $(BINS)" + @echo "INSTALL_PATH: $(INSTALL_PATH)" + +clean: + rm -f $(BINS) + go mod tidy -- cgit v1.2.3