aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--res/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/res/Makefile b/res/Makefile
index 5c3f1cdfc..74c9d47c7 100644
--- a/res/Makefile
+++ b/res/Makefile
@@ -39,11 +39,13 @@ $(if $(filter res_snmp,$(EMBEDDED_MODS)),modules.link,res_snmp.so): snmp/agent.o
$(if $(filter res_ael_share,$(EMBEDDED_MODS)),modules.link,res_ael_share.so): ael/ael_lex.o ael/ael.tab.o ael/pval.o
-ael/ael_lex.c:
+ael/ael_lex.c: ael/ael.flex
+ $(ECHO_PREFIX) echo " [FLEX] $< -> $@"
(cd ael; flex ael.flex; sed -e "/begin standard C headers/i#include \"asterisk.h\"" ael_lex.c > zz; mv zz ael_lex.c)
(cd ael; sed 's@#if __STDC_VERSION__ >= 199901L@#if !defined __STDC_VERSION__ || __STDC_VERSION__ >= 199901L@' ael_lex.c > zz; mv zz ael_lex.c)
-ael/ael.tab.c ael/ael.tab.h:
+ael/ael.tab.c ael/ael.tab.h: ael/ael.y
+ $(ECHO_PREFIX) echo " [BISON] $< -> $@"
(cd ael; bison -v -d ael.y)
ael/pval.o: ael/pval.c