s3-share/Makefile

25 lines
414 B
Makefile
Raw Normal View History

2022-05-13 09:58:32 +00:00
BINARY = s3share
BUILD_DIR = build
.PHONY: all
2022-05-16 23:10:47 +00:00
all: clean deps build
2022-05-13 09:58:32 +00:00
.PHONY:build
build: $(BUILD_DIR)/$(BINARY) $(BUILD_DIR)/public
$(BUILD_DIR)/$(BINARY):
go build -o $(BUILD_DIR)/$(BINARY) cmd/s3share.go
$(BUILD_DIR)/public:
npm run build && cp -r public/ $(BUILD_DIR)/public
2022-05-16 23:10:47 +00:00
.PHONY: deps
deps: node_modules
node_modules:
npm install
2022-05-13 09:58:32 +00:00
.PHONY:clean
clean:
rm -rf $(BUILD_DIR) && rm -rf public/build/