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

23 lines
607 B

plug_in_name = voicemail
module_ldflags =
module_cflags =
extra_install = install_email_template
vm_module: all
.PHONY: install_email_template
install_email_template: $(cfg-prefix)/$(cfg-dir)
mkdir -p $(cfg-prefix)/$(cfg-dir)
$(INSTALL-TOUCH) $(cfg-prefix)/$(cfg-dir)default.template.sample
$(INSTALL-BIN) default.template.sample $(cfg-prefix)/$(cfg-dir)
if [ ! -f $(cfg-prefix)/$(cfg-dir)default.template ]; then \
cp -f $(cfg-prefix)/$(cfg-dir)default.template.sample \
$(cfg-prefix)/$(cfg-dir)default.template; \
fi
COREPATH ?=../../core
include $(COREPATH)/plug-in/Makefile.app_module