1
0
forked from MTSR/mapserver
mapserver/server/Makefile

30 lines
1000 B
Makefile
Raw Normal View History

2019-01-05 19:21:24 +03:00
2019-01-11 12:49:19 +03:00
STATIC_VFS=vfs/static.go
2019-01-23 11:11:55 +03:00
OUT_DIR=output
2019-01-24 21:20:11 +03:00
ENV=GO111MODULE=on
2019-01-11 12:49:19 +03:00
2019-01-23 11:11:55 +03:00
all: build
$(OUT_DIR):
mkdir $@
test: $(STATIC_VFS) $(OUT_DIR)
2019-01-24 21:20:11 +03:00
$(ENV) go test ./...
2019-01-05 19:21:24 +03:00
2019-01-21 21:18:07 +03:00
clean:
2019-01-22 22:19:04 +03:00
rm -rf $(STATIC_VFS)
2019-01-23 11:11:55 +03:00
rm -rf $(OUT_DIR)
2019-01-21 21:18:07 +03:00
2019-01-11 12:49:19 +03:00
$(STATIC_VFS):
2019-01-24 21:34:58 +03:00
test -f esc || $(ENV) go get github.com/mjibson/esc
2019-01-24 21:37:40 +03:00
${HOME}/go/bin/esc -o $@ -prefix="static/" -pkg vfs static
2019-01-11 12:49:19 +03:00
2019-01-23 11:11:55 +03:00
build: $(STATIC_VFS) $(OUT_DIR)
2019-01-28 10:40:05 +03:00
#CGO_ENABLED=1 GOOS=linux GOARCH=386 go build -o $(OUT_DIR)/mapserver-linux-x86
2019-01-28 11:43:58 +03:00
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o $(OUT_DIR)/mapserver-linux-x86_64
2019-01-28 11:50:25 +03:00
# apt install gcc-mingw-w64
GOARCH=386 GOOS=windows CC=i686-w64-mingw32-gcc CGO_ENABLED=1 go build -o $(OUT_DIR)/mapserver-windows-x86.exe
2019-01-28 11:53:38 +03:00
GOARCH=amd64 GOOS=windows CC=x86_64-w64-mingw32-gcc CGO_ENABLED=1 go build -o $(OUT_DIR)/mapserver-windows-x86-64.exe
2019-01-28 11:43:58 +03:00
# apt install gcc-5-arm-linux-gnueabihf, TODO: container
GOARCH=arm GOARM=7 CC=arm-linux-gnueabihf-gcc-5 CGO_ENABLED=1 go build -ldflags "-linkmode external -extldflags -static" -o $(OUT_DIR)/mapserver-linux-arm