Correct wildcard in Makefile

This commit is contained in:
Alexander Neumann 2014-11-23 15:15:11 +01:00
parent fd3aca66e4
commit 575635753e
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ TAGS =
all: khepri
khepri: *.go $(wildcard ../../*.go) $(wildcard ../../*/*.go)
khepri: $(wildcard *.go) $(wildcard ../../*.go) $(wildcard ../../*/*.go)
go build $(TAGS) -ldflags "$(LDFLAGS)"
debug: TAGS=-tags debug_cmd