104 lines
3.6 KiB
Makefile
104 lines
3.6 KiB
Makefile
#
|
|
# include.mk
|
|
#
|
|
# This source file is part of the FoundationDB open source project
|
|
#
|
|
# Copyright 2013-2018 Apple Inc. and the FoundationDB project authors
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
TARGETS += fdb_go fdb_go_tester
|
|
CLEAN_TARGETS += fdb_go_clean fdb_go_tester_clean
|
|
|
|
GOPATH := $(CURDIR)/bindings/go/build
|
|
GO_IMPORT_PATH := github.com/apple/foundationdb/bindings/go/src
|
|
GO_DEST := $(GOPATH)/src/$(GO_IMPORT_PATH)
|
|
|
|
.PHONY: fdb_go fdb_go_path fdb_go_fmt fdb_go_fmt_check fdb_go_tester fdb_go_tester_clean
|
|
|
|
# We only override if the environment didn't set it (this is used by
|
|
# the fdbwebsite documentation build process)
|
|
GODOC_DIR ?= bindings/go
|
|
|
|
CGO_CFLAGS := -I$(CURDIR)/bindings/c
|
|
CGO_LDFLAGS := -L$(CURDIR)/lib
|
|
|
|
ifeq ($(PLATFORM),linux)
|
|
GOPLATFORM := linux_amd64
|
|
else ifeq ($(PLATFORM),osx)
|
|
GOPLATFORM := darwin_amd64
|
|
else
|
|
$(error Not prepared to compile on platform $(PLATFORM))
|
|
endif
|
|
|
|
GO_PACKAGE_OUTDIR := $(GOPATH)/pkg/$(GOPLATFORM)/$(GO_IMPORT_PATH)
|
|
|
|
GO_PACKAGES := fdb fdb/tuple fdb/subspace fdb/directory
|
|
GO_PACKAGE_OBJECTS := $(addprefix $(GO_PACKAGE_OUTDIR)/,$(GO_PACKAGES:=.a))
|
|
|
|
GO_GEN := $(CURDIR)/bindings/go/src/fdb/generated.go
|
|
GO_SRC := $(shell find $(CURDIR)/bindings/go/src -name '*.go') $(GO_GEN)
|
|
|
|
fdb_go: $(GO_PACKAGE_OBJECTS) $(GO_SRC) fdb_go_fmt_check
|
|
|
|
fdb_go_fmt: $(GO_SRC)
|
|
@echo "Formatting fdb_go"
|
|
@gofmt -w $(GO_SRC)
|
|
|
|
fdb_go_fmt_check: $(GO_SRC)
|
|
@echo "Checking fdb_go"
|
|
@bash -c 'fmtoutstr=$$(gofmt -l $(GO_SRC)) ; if [[ -n "$${fmtoutstr}" ]] ; then echo "Detected go formatting violations for the following files:" ; echo "$${fmtoutstr}" ; echo "Try running: make fdb_go_fmt"; exit 1 ; fi'
|
|
|
|
$(GO_DEST)/.stamp: $(GO_SRC)
|
|
@echo "Creating fdb_go_path"
|
|
@mkdir -p $(GO_DEST)
|
|
@cp -r bindings/go/src/* $(GO_DEST)
|
|
@touch $(GO_DEST)/.stamp
|
|
|
|
fdb_go_path: $(GO_DEST)/.stamp
|
|
|
|
fdb_go_clean:
|
|
@echo "Cleaning fdb_go"
|
|
@rm -rf $(GOPATH)
|
|
|
|
fdb_go_tester: $(GOPATH)/bin/_stacktester
|
|
|
|
fdb_go_tester_clean:
|
|
@echo "Cleaning fdb_go_tester"
|
|
@rm -rf $(GOPATH)/bin
|
|
|
|
$(GOPATH)/bin/_stacktester: $(GO_DEST)/.stamp $(GO_SRC) $(GO_PACKAGE_OBJECTS)
|
|
@echo "Compiling $(basename $(notdir $@))"
|
|
@go install $(GO_IMPORT_PATH)/_stacktester
|
|
|
|
$(GO_PACKAGE_OUTDIR)/fdb/tuple.a: $(GO_DEST)/.stamp $(GO_SRC) $(GO_PACKAGE_OUTDIR)/fdb.a
|
|
@echo "Compiling fdb/tuple"
|
|
@go install $(GO_IMPORT_PATH)/fdb/tuple
|
|
|
|
$(GO_PACKAGE_OUTDIR)/fdb/subspace.a: $(GO_DEST)/.stamp $(GO_SRC) $(GO_PACKAGE_OUTDIR)/fdb.a $(GO_PACKAGE_OUTDIR)/fdb/tuple.a
|
|
@echo "Compiling fdb/subspace"
|
|
@go install $(GO_IMPORT_PATH)/fdb/subspace
|
|
|
|
$(GO_PACKAGE_OUTDIR)/fdb/directory.a: $(GO_DEST)/.stamp $(GO_SRC) $(GO_PACKAGE_OUTDIR)/fdb.a $(GO_PACKAGE_OUTDIR)/fdb/tuple.a $(GO_PACKAGE_OUTDIR)/fdb/subspace.a
|
|
@echo "Compiling fdb/directory"
|
|
@go install $(GO_IMPORT_PATH)/fdb/directory
|
|
|
|
$(GO_PACKAGE_OUTDIR)/fdb.a: $(GO_DEST)/.stamp lib/libfdb_c.$(DLEXT) $(GO_SRC)
|
|
@echo "Compiling fdb"
|
|
@go install $(GO_IMPORT_PATH)/fdb
|
|
|
|
$(GO_GEN): bindings/go/src/_util/translate_fdb_options.go fdbclient/vexillographer/fdb.options
|
|
@echo "Building $@"
|
|
@go run bindings/go/src/_util/translate_fdb_options.go < fdbclient/vexillographer/fdb.options > $@
|