aboutsummaryrefslogtreecommitdiffstats
path: root/pbx/Makefile
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-25 18:29:02 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-25 18:29:02 +0000
commit74df229c6cef9ce852a34824a2364036e7a2329b (patch)
tree72729886684b042decd5848190447e50b3f121d6 /pbx/Makefile
parent4755015ee7fa650ecf995a4832d3e498e0376288 (diff)
don't rely on default search paths for finding local include files
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@22438 f38db490-d61c-443f-a65b-d21fe96a405b
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)