diff options
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 39 |
1 files changed, 39 insertions, 0 deletions
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 |
