dect
/
asterisk
Archived
13
0
Fork 0

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
This commit is contained in:
kpfleming 2009-04-28 14:12:09 +00:00
parent 7ece40728a
commit fffa63d2e8
1 changed files with 0 additions and 8 deletions

View File

@ -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)