From 6c699be2856c963bcc0e197845a199193f66d19a Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Thu, 25 Jul 2013 06:45:14 +0000 Subject: [PATCH] Makefile workaround for wildcard not doing glob properly --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 77e85a1..be3d181 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ B:=src SRCS:=$(sort $(wildcard src/*/*.c)) OBJS:=$(SRCS:src/%.c=$(B)/%.o) -DIRS:=$(patsubst src/%/,%,$(sort $(wildcard src/*/))) +DIRS:=$(patsubst src/%,%,$(filter-out src/REPORT,$(sort $(wildcard src/*)))) BDIRS:=$(DIRS:%=$(B)/%) NAMES:=$(SRCS:src/%.c=%) CFLAGS:=-Isrc/common -- 2.20.1