aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-28 14:12:09 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-28 14:12:09 +0000
commitfffa63d2e8e2b274cbc483c79ec5ba3a28b2933a (patch)
tree7492b40304b2e547c53b342c3c1fefd1d2d3b2d6
parent7ece40728a6eabcbb7162cdd56b3172ccf4ae6cc (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: http://svn.digium.com/svn/asterisk/trunk@190861 f38db490-d61c-443f-a65b-d21fe96a405b
-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)