linphone-ios/submodules/build/builders.d/mswebrtc.mk

46 lines
2 KiB
Makefile

############################################################################
# mswebrtc.mk
# Copyright (C) 2014 Belledonne Communications,Grenoble France
#
############################################################################
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
############################################################################
mswebrtc_dir?=mswebrtc
$(BUILDER_SRC_DIR)/$(mswebrtc_dir)/configure:
cd $(BUILDER_SRC_DIR)/$(mswebrtc_dir) && ./autogen.sh
$(BUILDER_BUILD_DIR)/$(mswebrtc_dir)/Makefile: $(BUILDER_SRC_DIR)/$(mswebrtc_dir)/configure
mkdir -p $(BUILDER_BUILD_DIR)/$(mswebrtc_dir)
cd $(BUILDER_BUILD_DIR)/$(mswebrtc_dir)/ \
&& PKG_CONFIG_LIBDIR=$(prefix)/lib/pkgconfig CONFIG_SITE=$(BUILDER_SRC_DIR)/build/$(config_site) \
$(BUILDER_SRC_DIR)/$(mswebrtc_dir)/configure -prefix=$(prefix) --host=$(host) ${library_mode} --disable-aec CFLAGS="-Wno-error"
build-mswebrtc: $(BUILDER_BUILD_DIR)/$(mswebrtc_dir)/Makefile
cd $(BUILDER_BUILD_DIR)/$(mswebrtc_dir) && PKG_CONFIG_LIBDIR=$(prefix)/lib/pkgconfig CONFIG_SITE=$(BUILDER_SRC_DIR)/build/$(config_site) make && make install
clean-mswebrtc:
cd $(BUILDER_BUILD_DIR)/$(mswebrtc_dir) && make clean
veryclean-mswebrtc:
-cd $(BUILDER_BUILD_DIR)/$(mswebrtc_dir) && make distclean
-cd $(BUILDER_SRC_DIR)/$(mswebrtc_dir) && rm -f configure
clean-makefile-mswebrtc:
cd $(BUILDER_BUILD_DIR)/$(mswebrtc_dir) && rm -f Makefile