Home | History | Annotate | Download | only in kati
      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 
     15 GO_SRCS:=$(wildcard *.go)
     16 
     17 ifeq (${GOPATH},)
     18 KATI_GOPATH:=$$(pwd)/out
     19 else
     20 KATI_GOPATH:=$$(pwd)/out:$${GOPATH}
     21 endif
     22 
     23 kati: 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 
     28 go_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 
     35 go_test: $(GO_SRCS)
     36 	GOPATH=${KATI_GOPATH} go test *.go
     37 
     38 go_clean:
     39 	rm -rf out kati go_src_stamp
     40 
     41 .PHONY: go_clean go_test
     42