This commit is contained in:
David Albertson 2018-11-02 17:17:15 -07:00
Родитель ce8b5620d3
Коммит 7e5a0b3780
1 изменённых файлов: 21 добавлений и 0 удалений

21
Makefile Normal file
Просмотреть файл

@ -0,0 +1,21 @@
BINDIR=bin
BIN_WORKER=worker
BIN_SANDBOX=sandbox
binary: clean
if [ -z "$$GOPATH" ]; then \
echo "GOPATH is not set"; \
exit 1; \
fi
@mkdir -p ./$(BINDIR)
GOOS=linux GOARCH=amd64 go build -v \
-o $(BINDIR)/$(BIN_WORKER) ./main/worker
GOOS=linux GOARCH=amd64 go build \
-o $(BINDIR)/$(BIN_SANDBOX) ./main/sandbox
clean:
rm -rf "$(BINDIR)"
.PHONY: clean binary