summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2009-04-28 14:12:09 +0000
committerKevin P. Fleming <kpfleming@digium.com>2009-04-28 14:12:09 +0000
commit97e5d179ca37b8391bbf41da3999ea4027b0b326 (patch)
tree7492b40304b2e547c53b342c3c1fefd1d2d3b2d6
parent2e0f8bcbc80fc98ee158736d9997ec3c12acbd8c (diff)
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
-rw-r--r--Makefile.rules8
1 files changed, 0 insertions, 8 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 65eb62f8d..a14722e24 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)