From: Kevin P. Fleming Date: Tue, 28 Apr 2009 14:12:09 +0000 (+0000) Subject: Remove Makefile rules for bison and flex sources X-Git-Tag: 11.0.0-beta1~4986 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=97e5d179ca37b8391bbf41da3999ea4027b0b326;p=thirdparty%2Fasterisk.git Remove Makefile rules for bison and flex sources We never, ever want these files to processed automatically, because we store the output files in Subversion and users should never need to rebuild them. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@190861 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/Makefile.rules b/Makefile.rules index 65eb62f8db..a14722e24e 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -111,14 +111,6 @@ endif $(ECHO_PREFIX) echo " [CPP] $< -> $@" $(CMD_PREFIX) $(CXX) -o $@ -E $< $(CXX_CFLAGS) $(MAKE_DEPS) -%.c: %.y - $(ECHO_PREFIX) echo " [BISON] $< -> $@" - $(CMD_PREFIX) bison -o $@ -d --name-prefix=ast_yy $< - -%.c: %.fl - $(ECHO_PREFIX) echo " [FLEX] $< -> $@" - $(CMD_PREFIX) flex -o $@ --full $< - %.so: %.o $(ECHO_PREFIX) echo " [LD] $^ -> $@" $(CMD_PREFIX) $(CC) $(STATIC_BUILD) -o $@ $(CC_LDFLAGS_SO) $^ $(CC_LIBS)