summaryrefslogtreecommitdiff
path: root/pbx/Makefile
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-04-25 18:29:02 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-04-25 18:29:02 +0000
commitdcccc2ed71ca2971609db88975724d7e15d0d549 (patch)
tree72729886684b042decd5848190447e50b3f121d6 /pbx/Makefile
parent5b6e2d16e36eb5a8e68f47556878f38cf7e5c2e4 (diff)
don't rely on default search paths for finding local include files
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22438 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 99846a23d..5cc655c0c 100644
--- a/pbx/Makefile
+++ b/pbx/Makefile
@@ -54,10 +54,10 @@ pbx_ael.so: pbx_ael.o ael/aelbison.o ael/aelflex.o
$(CC) $(SOLINK) -o $@ pbx_ael.o ael/aelbison.o ael/aelflex.o
ael/aelflex.o: ael/ael_lex.c ../include/asterisk/ael_structs.h ael/ael.tab.h
- $(CC) $(CFLAGS) -c -o ael/aelflex.o ael/ael_lex.c
+ $(CC) $(CFLAGS) -I. -c -o ael/aelflex.o ael/ael_lex.c
ael/aelbison.o: ael/ael.tab.c ael/ael.tab.h ../include/asterisk/ael_structs.h
- $(CC) $(CFLAGS) -c -o ael/aelbison.o ael/ael.tab.c
+ $(CC) $(CFLAGS) -I. -c -o ael/aelbison.o ael/ael.tab.c
ael/ael_lex.c: ael/ael.flex
(cd ael; flex ael.flex)