fix up dependencies for aelparse so that bison/flex will not be run to rebuild source files (that should _only_ be done manually)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23354 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2006-04-29 14:48:32 +00:00
parent 1209c0ea58
commit 54d6194340

View File

@@ -57,16 +57,18 @@ astman: astman.o ../md5.o
stereorize: stereorize.o frame.o stereorize: stereorize.o frame.o
$(CC) $(CFLAGS) -o stereorize stereorize.o frame.o -lm $(CC) $(CFLAGS) -o stereorize stereorize.o frame.o -lm
.PHONY: ../pbx/ael/aelflex.o ../pbx/ael/aelbison.o ../pbx/pbx_ael.o
ast_expr2.o: ../ast_expr2.c ast_expr2.o: ../ast_expr2.c
gcc -g -c -o $@ $< gcc $(CFLAGS) -include ../include/autoconfig.h -c -o $@ $<
ast_expr2f.o: ../ast_expr2f.c ast_expr2f.o: ../ast_expr2f.c
gcc -g -c -DSTANDALONE -o $@ $< gcc $(CFLAGS) -include ../include/autoconfig.h -c -DSTANDALONE -o $@ $<
check_expr: check_expr.c ast_expr2.o ast_expr2f.o check_expr: check_expr.c ast_expr2.o ast_expr2f.o
$(CC) $(CFLAGS) -o $@ $^ $(CC) $(CFLAGS) -o $@ $^
aelparse : ../pbx/ael/aelflex.o ../pbx/ael/aelbison.o ../pbx/pbx_ael.o ael_main.o ../ast_expr2f.o ../ast_expr2.o aelparse : ../pbx/ael/aelflex.o ../pbx/ael/aelbison.o ../pbx/pbx_ael.o ael_main.o ast_expr2f.o ast_expr2.o
$(CC) $(CFLAGS) -g -o aelparse ../pbx/ael/aelflex.o ../pbx/ael/aelbison.o ael_main.o ../pbx/pbx_ael.o ../ast_expr2f.o ../ast_expr2.o $(CC) $(CFLAGS) -g -o aelparse ../pbx/ael/aelflex.o ../pbx/ael/aelbison.o ael_main.o ../pbx/pbx_ael.o ../ast_expr2f.o ../ast_expr2.o
ael_main.o : ael_main.c ../include/asterisk/ael_structs.h ael_main.o : ael_main.c ../include/asterisk/ael_structs.h