summaryrefslogtreecommitdiff
path: root/pbx/Makefile
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-04-30 11:40:06 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-04-30 11:40:06 +0000
commit7343d311f1309725be5eab9266fa202e150e493a (patch)
treead8abf53472f7c738c723076412b05adff88cc79 /pbx/Makefile
parent6ec91a102c70958bafeb480e180513b9ba543cee (diff)
simplify CFLAGS handling for subdirectories
don't put paths into the include search path when they are not needed don't auto-rebuild the AEL bison/flex output based on make dependencies (the generated files are already checked in, and the timestamps generated by a checkout will usually cause them to be overwritten) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23582 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/Makefile')
-rw-r--r--pbx/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbx/Makefile b/pbx/Makefile
index 5cc655c0c..47ff9aa37 100644
--- a/pbx/Makefile
+++ b/pbx/Makefile
@@ -59,10 +59,10 @@ ael/aelflex.o: ael/ael_lex.c ../include/asterisk/ael_structs.h ael/ael.tab.h
ael/aelbison.o: ael/ael.tab.c ael/ael.tab.h ../include/asterisk/ael_structs.h
$(CC) $(CFLAGS) -I. -c -o ael/aelbison.o ael/ael.tab.c
-ael/ael_lex.c: ael/ael.flex
+ael/ael_lex.c:
(cd ael; flex ael.flex)
-ael/ael.tab.c ael/ael.tab.h: ael/ael.y
+ael/ael.tab.c ael/ael.tab.h:
(cd ael; bison -v -d ael.y)
%.moc : %.h