mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
31 lines
1.8 KiB
Makefile
31 lines
1.8 KiB
Makefile
############################################################################
|
|
# Makefile
|
|
# Copyright (C) 2009 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.
|
|
#
|
|
############################################################################
|
|
|
|
all:
|
|
@echo "*******************************************************************************"
|
|
@echo "This makefile is deprecated. Please see README.md for compilation instructions. Here are some equivalents:"
|
|
@echo "Equivalent of make is: cd ../../ && ./prepare.py && make"
|
|
@echo "Equivalent of make enable_gpl_third_parties=no is: cd ../../ && ./prepare.py -DENABLE_GPL_THIRD_PARTIES=NO && make"
|
|
@echo "Equivalent of make enable_debug=yes is: cd ../../ && ./prepare.py -d && make"
|
|
@echo "Equivalent of make enable_i386=yes is: cd ../../ && ./prepare.py all && make"
|
|
@echo "Equivalent of make enable_zrpt=yes enable_opus=yes enable_ffmpeg is: cd ../../ && ./prepare.py -DENABLE_ZRTP=YES -DENABLE_OPUS=YES -DENABLE_FFMPEG=YES && make"
|
|
@echo "*******************************************************************************"
|