mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 03:50:31 +00:00
we have to build local copies of aelflex.o, aelbison.o, and pbx_ael.o as well
to make sure aelparse doesn't use versions of these objects compiled with astmm support (issue #7122) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@28796 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -11,9 +11,6 @@
|
|||||||
# the GNU General Public License
|
# the GNU General Public License
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
|
||||||
# Don't use ast mm routines
|
|
||||||
#
|
|
||||||
UTILS:=astman smsq stereorize streamplayer aelparse
|
UTILS:=astman smsq stereorize streamplayer aelparse
|
||||||
|
|
||||||
ifeq (${OSARCH},SunOS)
|
ifeq (${OSARCH},SunOS)
|
||||||
@@ -76,8 +73,17 @@ ast_expr2f.o: ../ast_expr2f.c
|
|||||||
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
|
aelflex.o: ../pbx/ael/ael_lex.c ../include/asterisk/ael_structs.h ../pbx/ael/ael.tab.h
|
||||||
$(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) -I../pbx/ -c -o $@ $<
|
||||||
|
|
||||||
|
aelbison.o: ../pbx/ael/ael.tab.c ../pbx/ael/ael.tab.h ../include/asterisk/ael_structs.h
|
||||||
|
$(CC) $(CFLAGS) -I../pbx/ -c -o $@ $<
|
||||||
|
|
||||||
|
pbx_ael.o: ../pbx/pbx_ael.c
|
||||||
|
$(CC) $(CFLAGS) -c -o $@ $<
|
||||||
|
|
||||||
|
aelparse : aelflex.o aelbison.o pbx_ael.o ael_main.o ast_expr2f.o ast_expr2.o
|
||||||
|
$(CC) $(CFLAGS) -g -o aelparse aelflex.o aelbison.o ael_main.o 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
|
||||||
$(CC) $(CFLAGS) -c -g -o ael_main.o ael_main.c
|
$(CC) $(CFLAGS) -c -g -o ael_main.o ael_main.c
|
||||||
|
Reference in New Issue
Block a user