1# Copyright 2015 Google Inc. All rights reserved 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15GO_SRCS:=$(wildcard *.go) 16 17ifeq (${GOPATH},) 18KATI_GOPATH:=$$(pwd)/out 19else 20KATI_GOPATH:=$$(pwd)/out:$${GOPATH} 21endif 22 23kati: go_src_stamp 24 -rm -f out/bin/kati 25 GOPATH=${KATI_GOPATH} go install -ldflags "-X github.com/google/kati.gitVersion=$(shell git rev-parse HEAD)" github.com/google/kati/cmd/kati 26 cp out/bin/kati $@ 27 28go_src_stamp: $(GO_SRCS) $(wildcard cmd/*/*.go) 29 -rm -rf out/src out/pkg 30 mkdir -p out/src/github.com/google/kati 31 cp -a $(GO_SRCS) cmd out/src/github.com/google/kati 32 GOPATH=${KATI_GOPATH} go get github.com/google/kati/cmd/kati 33 touch $@ 34 35go_test: $(GO_SRCS) 36 GOPATH=${KATI_GOPATH} go test *.go 37 38go_clean: 39 rm -rf out kati go_src_stamp 40 41.PHONY: go_clean go_test 42