custom-script-extension-linux/Makefile

29 строки
893 B
Makefile
Исходник Обычный вид История

BINDIR=bin
BIN=custom-script-extension
BUNDLEDIR=bundle
BUNDLE=custom-script-extension.zip
bundle: clean binary
@mkdir -p $(BUNDLEDIR)
zip ./$(BUNDLEDIR)/$(BUNDLE) ./$(BINDIR)/$(BIN)
zip ./$(BUNDLEDIR)/$(BUNDLE) ./$(BINDIR)/custom-script-shim
2016-08-01 23:51:52 +03:00
zip -j ./$(BUNDLEDIR)/$(BUNDLE) ./misc/HandlerManifest.json
2016-08-02 09:14:15 +03:00
zip -j ./$(BUNDLEDIR)/$(BUNDLE) ./misc/manifest.xml
binary: clean
if [ -z "$$GOPATH" ]; then \
echo "GOPATH is not set"; \
exit 1; \
fi
GOOS=linux GOARCH=amd64 go build -v \
-ldflags "-X main.BuildDate=`date -u --rfc-3339=seconds 2> /dev/null | sed -e 's/ /T/'` \
-X main.Version=`<./VERSION` \
-X main.GitCommit=`git rev-parse --short HEAD` \
-X main.State=`if [ -n "$$(git status --porcelain)" ]; then echo 'dirty'; fi`" \
-o $(BINDIR)/$(BIN) ./main
cp ./misc/custom-script-shim ./$(BINDIR)
clean:
rm -rf "$(BINDIR)" "$(BUNDLEDIR)"
.PHONY: clean binary