2017-10-27 11:06:45 +00:00
|
|
|
# Makefile for nmdc-webfrontend
|
|
|
|
|
|
|
|
BINNAME=nmdc-webfrontend
|
|
|
|
|
2017-10-28 00:32:29 +00:00
|
|
|
VERSION=1.2.3
|
2017-10-27 11:06:45 +00:00
|
|
|
|
|
|
|
GOFLAGS=-a \
|
|
|
|
-ldflags "-s -w -X main.VERSION=$(BINNAME)/$(VERSION)" \
|
|
|
|
-gcflags "-trimpath ${GOPATH}" \
|
|
|
|
-asmflags "-trimpath ${GOPATH}"
|
|
|
|
|
2017-10-27 23:48:55 +00:00
|
|
|
SOURCES=client/ Gopkg.lock Gopkg.toml Makefile Config.go main.go nmdc-webfrontend.conf.SAMPLE
|
2017-10-27 11:06:45 +00:00
|
|
|
|
|
|
|
.PHONY: all deps clean
|
|
|
|
|
|
|
|
all: $(BINNAME)-$(VERSION)-win32.7z $(BINNAME)-$(VERSION)-linux64.tar.xz $(BINNAME)-$(VERSION)-src.tar.xz
|
|
|
|
|
|
|
|
deps:
|
|
|
|
npm install -g less uglify-js less-plugin-clean-css html-minifier
|
|
|
|
go get -u github.com/jteeuwen/go-bindata/...
|
2017-10-27 23:48:55 +00:00
|
|
|
go get -u github.com/golang/dep/cmd/dep
|
|
|
|
dep ensure
|
2017-10-27 11:06:45 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f ./$(BINNAME)
|
|
|
|
rm -f ./$(BINNAME).exe
|
|
|
|
rm -fr ./clientpack
|
|
|
|
rm -f ./bindata.go
|
|
|
|
|
|
|
|
bindata.go: client client/*
|
2017-11-10 07:45:31 +00:00
|
|
|
npm run webpack
|
|
|
|
cat client/index.htm \
|
|
|
|
| sed -e '/bundle.js/{i <script>' -e 'r clientpack/bundle.min.js' -e 'a </script>' -e 'd}' \
|
|
|
|
> clientpack/index.htm
|
2017-10-27 11:21:20 +00:00
|
|
|
html-minifier --collapse-whitespace -o clientpack/index.min.htm clientpack/index.htm
|
|
|
|
mv clientpack/index.min.htm clientpack/index.htm
|
2017-10-28 00:27:07 +00:00
|
|
|
go-bindata -nomemcopy -nometadata -prefix clientpack clientpack
|
2017-10-27 11:06:45 +00:00
|
|
|
|
|
|
|
$(BINNAME).exe: bindata.go *.go
|
|
|
|
GOARCH=386 GOOS=windows go build $(GOFLAGS) -o $(BINNAME).exe
|
|
|
|
|
|
|
|
$(BINNAME): bindata.go *.go
|
|
|
|
GOARCH=amd64 GOOS=linux go build $(GOFLAGS) -o $(BINNAME)
|
|
|
|
|
|
|
|
$(BINNAME)-$(VERSION)-win32.7z: $(BINNAME).exe nmdc-webfrontend.conf.SAMPLE
|
|
|
|
7z a -mx9 "$(BINNAME)-$(VERSION)-win32.7z" $(BINNAME).exe nmdc-webfrontend.conf.SAMPLE
|
|
|
|
|
|
|
|
$(BINNAME)-$(VERSION)-linux64.tar.xz: $(BINNAME) nmdc-webfrontend.conf.SAMPLE
|
2017-10-28 01:15:23 +00:00
|
|
|
XZ_OPT='-9' tar caf "$(BINNAME)-$(VERSION)-linux64.tar.xz" $(BINNAME) nmdc-webfrontend.conf.SAMPLE --owner=0 --group=0
|
2017-10-27 11:06:45 +00:00
|
|
|
|
|
|
|
$(BINNAME)-$(VERSION)-src.tar.xz: $(SOURCES)
|
|
|
|
XZ_OPT='-9' tar caf "$(BINNAME)-$(VERSION)-src.tar.xz" $(SOURCES) --owner=0 --group=0
|