summaryrefslogtreecommitdiff
path: root/funcs/Makefile
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-05-15 17:45:30 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-05-15 17:45:30 +0000
commitfa60672d5838355d98f81fb85ba245d517ae6991 (patch)
tree0dca6952bac0dc48b1b51a445fb7c60fd5caf1ff /funcs/Makefile
parentbb1f05fba7a8256a2e7c7016c0a2a035bc6eb8b5 (diff)
add dialplan functions for Caller ID, language and timeouts (bug #4219, with mods)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5679 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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)))