mirror of https://github.com/sipwise/sems.git
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.
26 lines
478 B
26 lines
478 B
plug_in_name = sbc
|
|
|
|
module_ldflags =
|
|
module_cflags =
|
|
|
|
extra_target = make_call_control_mods
|
|
extra_install = install_tools install_call_control_mods
|
|
extra_clean = clean_call_control_mods
|
|
|
|
COREPATH ?= ../../core
|
|
include $(COREPATH)/plug-in/Makefile.app_module
|
|
|
|
install_tools:
|
|
@$(MAKE) -C tools/ install
|
|
|
|
make_call_control_mods:
|
|
@$(MAKE) -C call_control
|
|
|
|
install_call_control_mods:
|
|
@$(MAKE) -C call_control/ install
|
|
|
|
clean_call_control_mods:
|
|
@$(MAKE) -C call_control/ clean
|
|
|
|
|