From 036ecba1d155fdf82d50a17a60727b2b17e458f2 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 11 Jul 2011 20:18:38 +0200 Subject: [PATCH] =?utf8?q?makefile:=20don=E2=80=99t=20pick=20up=20autogene?= =?utf8?q?rated=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- i3-config-wizard/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/i3-config-wizard/Makefile b/i3-config-wizard/Makefile index f0073455..07d6484d 100644 --- a/i3-config-wizard/Makefile +++ b/i3-config-wizard/Makefile @@ -4,7 +4,8 @@ TOPDIR=.. include $(TOPDIR)/common.mk # Depend on the object files of all source-files in src/*.c and on all header files -FILES:=$(patsubst %.c,%.o,$(wildcard *.c)) +AUTOGENERATED:=cfgparse.tab.c cfgparse.yy.c +FILES:=$(patsubst %.c,%.o,$(filter-out $(AUTOGENERATED),$(wildcard *.c))) HEADERS:=$(wildcard *.h) # Depend on the specific file (.c for each .o) and on all headers -- 2.39.5