From 575635753e4350cd2e43f5b15d092180464a805d Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 23 Nov 2014 15:15:11 +0100 Subject: [PATCH] Correct wildcard in Makefile --- cmd/khepri/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/khepri/Makefile b/cmd/khepri/Makefile index 66819e525..078778d7f 100644 --- a/cmd/khepri/Makefile +++ b/cmd/khepri/Makefile @@ -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