You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sems/apps/voicemail/Makefile

34 lines
985 B

plug_in_name = voicemail
module_ldflags =
module_cflags =
# Uncomment the last two lines if you want to keep templates and audio
# in MySQL database.
#
# You must also install MySQL++ development files and libraries
# (http://www.tangentsoft.net/mysql++/). Your MySQL++ version must be
# at least 2.2.
#
# You must manually install default.template.sample to default_template
# database table.
#
#module_ldflags = -lmysqlpp
#module_cflags = -DUSE_MYSQL -I/usr/include/mysql++ -I/usr/include/mysql
extra_install = install_email_template $(plug_in_name)_audio
vm_module: all
.PHONY: install_email_template
install_email_template: $(DESTDIR)$(app_cfg_target)
$(INSTALL_CFG) default.template.sample $(DESTDIR)$(app_cfg_target)
if [ ! -f $(DESTDIR)$(app_cfg_target)default.template ]; then \
cp -f $(DESTDIR)$(app_cfg_target)default.template.sample \
$(DESTDIR)$(app_cfg_target)default.template; \
fi
COREPATH ?=../../core
include $(COREPATH)/plug-in/Makefile.app_module