aboutsummaryrefslogtreecommitdiffstats
path: root/utils/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'utils/Makefile')
-rw-r--r--utils/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/utils/Makefile b/utils/Makefile
index 57cbb6200..d88beee83 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -66,6 +66,22 @@ ast_expr2f.o: ../ast_expr2f.c
check_expr: check_expr.c ast_expr2.o ast_expr2f.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
+ $(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
+ $(CC) $(CFLAGS) -c -g -o ael_main.o ael_main.c
+
+ael_main1.o : ael_main.c ../include/asterisk/ael_structs.h
+ $(CC) $(CFLAGS) -c -g -o ael_main1.o ael_main.c
+
+testexpr2s: ../ast_expr2f.c ../ast_expr2.c ../ast_expr2.h
+ gcc -g -c -I../include -DSTANDALONE ../ast_expr2f.c -o ast_expr2f.o
+ gcc -g -c -I../include -DSTANDALONE ../ast_expr2.c -o ast_expr2.o
+ gcc -g -o testexpr2s ast_expr2f.o ast_expr2.o
+ rm ast_expr2.o ast_expr2f.o
+ ./testexpr2s expr2.testinput
+
smsq.o: smsq.c
$(CC) $(CFLAGS) -include ../include/autoconfig.h -c -o $@ $<