surrealpatch/Makefile
Tobie Morgan Hitchcock f1af7504fb Add deploy scripts
2019-12-08 13:53:49 +00:00

54 lines
1.3 KiB
Makefile

# Copyright © 2016 Abcum Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
GO ?= CGO_ENABLED=0 go
CGO ?= CGO_ENABLED=1 go
LDF := -s -w
.PHONY: default
default:
@echo "Choose a Makefile target:"
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print " - " $$1}}' | sort
.PHONY: kill
kill:
pkill -9 -f surreal
.PHONY: clean
clean:
$(GO) clean -i -n
.PHONY: tests
tests:
$(GO) test ./...
.PHONY: racer
racer:
$(CGO) test -race ./...
.PHONY: build
build: LDF += $(shell GOPATH=${GOPATH} build/flags.sh)
build:
$(GO) build -v -ldflags '$(LDF)'
.PHONY: install
install: LDF += $(shell GOPATH=${GOPATH} build/flags.sh)
install:
$(GO) install -v -ldflags '$(LDF)'
.PHONY: deploy
deploy:
build/macos.sh
build/linux.sh
build/windows.sh