aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.rules
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-28 14:13:53 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-28 14:13:53 +0000
commitde76fe3eddf5c865c8c522d6519b9c3a3796204a (patch)
tree06a17db0c6444b5d9457956f5c55cbd87b957eef /Makefile.rules
parent7d6146bdcaaca604777972d215ba7f3532421ea4 (diff)
Merged revisions 190861 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r190861 | kpfleming | 2009-04-28 09:12:09 -0500 (Tue, 28 Apr 2009) | 5 lines 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: http://svn.digium.com/svn/asterisk/branches/1.6.2@190864 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules8
1 files changed, 0 insertions, 8 deletions
diff --git a/Makefile.rules b/Makefile.rules
index db44a876b..ee3985899 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -106,14 +106,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)