[asterisk-commits] kpfleming: trunk r190861 - /trunk/Makefile.rules
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Apr 28 09:12:12 CDT 2009
Author: kpfleming
Date: Tue Apr 28 09:12:09 2009
New Revision: 190861
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=190861
Log:
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.
Modified:
trunk/Makefile.rules
Modified: trunk/Makefile.rules
URL: http://svn.digium.com/svn-view/asterisk/trunk/Makefile.rules?view=diff&rev=190861&r1=190860&r2=190861
==============================================================================
--- trunk/Makefile.rules (original)
+++ trunk/Makefile.rules Tue Apr 28 09:12:09 2009
@@ -111,14 +111,6 @@
$(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)
More information about the asterisk-commits
mailing list