1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
Files
mxpv-podsync/cmd/api/Makefile

15 lines
214 B
Makefile
Raw Normal View History

2019-03-06 22:19:59 -08:00
OUT := api
2019-02-24 14:19:55 -08:00
SRC := $(wildcard *.go)
build: $(SRC)
GOOS=linux go build -v -o $(OUT)
.PHONY: push
push: build
2019-03-06 22:19:59 -08:00
docker build -t mxpv/podsync_api .
docker push mxpv/podsync_api
2019-02-24 14:19:55 -08:00
.PHONY: clean
clean:
- rm -f $(OUT)