aboutsummaryrefslogtreecommitdiffstats
path: root/funcs/Makefile
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-15 17:45:30 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-15 17:45:30 +0000
commit025aeb8f62d8b5c199846c20c73ff25720dae21e (patch)
tree0dca6952bac0dc48b1b51a445fb7c60fd5caf1ff /funcs/Makefile
parentb59e7819bd13b8713fa249affc2b5c7e9a41a717 (diff)
add dialplan functions for Caller ID, language and timeouts (bug #4219, with mods)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5679 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs/Makefile')
-rwxr-xr-xfuncs/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/funcs/Makefile b/funcs/Makefile
index c7bdd042c..fa240fd30 100755
--- a/funcs/Makefile
+++ b/funcs/Makefile
@@ -13,8 +13,15 @@
FUNCS=pbx_functions.so
-BUILTINS=func_md5.o func_groupcount.o func_strings.o func_cdr.o \
- func_logic.o func_env.o func_db.o
+BUILTINS=func_md5.o \
+ func_groupcount.o \
+ func_strings.o \
+ func_cdr.o \
+ func_logic.o \
+ func_env.o \
+ func_db.o \
+ func_timeout.o \
+ func_language.o \
STANDALONE_FUNCS=$(filter-out $(BUILTINS),$(patsubst %.c,%.o,$(wildcard func*.c)))