Makefile: Add dependency on all Go source code

This commit is contained in:
Alexander Neumann 2015-05-14 11:11:30 +02:00
parent e1098eedac
commit 3ace557dbe
1 changed files with 6 additions and 4 deletions

View File

@ -14,6 +14,8 @@ SFTP_PATH ?= /usr/lib/ssh/sftp-server
CMDS=$(patsubst cmd/%,%,$(wildcard cmd/*))
CMDS_DEBUG=$(patsubst %,%.debug,$(CMDS))
SOURCE=$(wildcard *.go) $(wildcard */*.go) $(wildcard */*/*.go)
export GOPATH GOX_OS
all: restic
@ -22,11 +24,11 @@ all: restic
mkdir -p .gopath/src/github.com/restic
ln -snf ../../../.. .gopath/src/github.com/restic/restic
%: cmd/% .gopath
%: cmd/% .gopath $(SOURCE)
cd $(BASEPATH) && \
go build -a -ldflags "-s" -o $@ ./$<
%.debug: cmd/% .gopath
%.debug: cmd/% .gopath $(SOURCE)
cd $(BASEPATH) && \
go build -a -tags debug -ldflags "-s" -o $@ ./$<
@ -42,7 +44,7 @@ bench: .gopath
cd $(BASEPATH) && \
go test $(GOTESTFLAGS) -bench ./...
gox: .gopath
gox: .gopath $(SOURCE)
cd $(BASEPATH) && \
gox -verbose -os "$(GOX_OS)" ./cmd/restic
@ -54,7 +56,7 @@ test-integration: .gopath restic restic.debug dirdiff
cd $(BASEPATH)/backend && \
go test $(GOTESTFLAGS) -test.sftppath $(SFTP_PATH) ./...
all.cov: .gopath
all.cov: .gopath $(SOURCE)
cd $(BASEPATH) && \
./coverage_all.sh all.cov