]> git.sur5r.net Git - i3/i3/commitdiff
makefile: don’t pick up autogenerated files
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 11 Jul 2011 18:18:38 +0000 (20:18 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 11 Jul 2011 18:18:38 +0000 (20:18 +0200)
i3-config-wizard/Makefile

index f0073455964948ab824f67a828352314427d2012..07d6484d1572898f7e4b441680563803f9f66df0 100644 (file)
@@ -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