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.
24 lines
521 B
24 lines
521 B
###########################################################
|
|
XMLRPCPP_DIR = xmlrpc++0.7
|
|
|
|
plug_in_name = cc_acc_xmlrpc
|
|
|
|
module_ldflags =
|
|
module_cflags = -I$(XMLRPCPP_DIR)/src
|
|
|
|
module_extra_objs = $(XMLRPCPP_DIR)/libXmlRpc.a
|
|
|
|
extra_clean = clean_libxmlrpc
|
|
|
|
|
|
COREPATH ?=../../../../core
|
|
include $(COREPATH)/plug-in/Makefile.app_module
|
|
|
|
$(XMLRPCPP_DIR)/libXmlRpc.a:
|
|
$(MAKE) -C $(XMLRPCPP_DIR) libXmlRpc.a
|
|
|
|
clean_libxmlrpc:
|
|
$(MAKE) -C $(XMLRPCPP_DIR) clean
|
|
|
|
###############################################################
|