improved Makefile

This commit is contained in:
Djeeberjr 2022-05-17 01:55:32 +02:00
parent f799415ada
commit 9eb68a1d7e

View File

@ -5,13 +5,19 @@ BUILD_DIR = build
all: clean deps build
.PHONY:build
build: $(BUILD_DIR)/$(BINARY) $(BUILD_DIR)/public
build: go js
.PHONY: js
js: $(BUILD_DIR)/public
.PHONY: go
go: $(BUILD_DIR)/$(BINARY)
$(BUILD_DIR)/$(BINARY):
go build -o $(BUILD_DIR)/$(BINARY) cmd/s3share.go
$(BUILD_DIR)/public:
npm run build && cp -r public/ $(BUILD_DIR)/public
npm run build && mkdir -p $(BUILD_DIR) &&cp -r public/ $(BUILD_DIR)/public
.PHONY: deps
deps: node_modules