📄 makefile
字号:
## Makefile## Make file for Open H323 library## Copyright (c) 1998-2000 Equivalence Pty. Ltd.## The contents of this file are subject to the Mozilla Public License# Version 1.0 (the "License"); you may not use this file except in# compliance with the License. You may obtain a copy of the License at# http://www.mozilla.org/MPL/## Software distributed under the License is distributed on an "AS IS"# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See# the License for the specific language governing rights and limitations# under the License.## The Original Code is Open H323 library.## The Initial Developer of the Original Code is Equivalence Pty. Ltd.## Contributor(s): ______________________________________.## $Log: Makefile,v $# Revision 1.51 2000/05/18 11:53:33 robertj# Changes to support doc++ documentation generation.## Revision 1.50 2000/05/11 02:27:52 robertj# Removed "sample" directory and added "samples/simple" for demo app.## Revision 1.49 2000/05/02 04:32:23 robertj# Fixed copyright notice comment.## Revision 1.48 2000/04/26 01:07:23 robertj# Removed tarfile creation target, this is done differently now.## Revision 1.47 2000/04/06 20:10:53 craigs# Added install target## Revision 1.46 2000/03/24 03:17:44 robertj# Directory restructuring.## Revision 1.45 2000/03/08 00:25:09 robertj# Changed check for compile of openphone to be AND not OR.## Revision 1.44 2000/03/03 18:04:01 craigs# Fixed problem with openphone being built when no GUI code installed## Revision 1.43 2000/03/03 12:20:40 robertj# Fixed non fatal error in make rules and allowed for missing sample apps.## Revision 1.42 2000/02/24 11:53:31 craigs# Fixed problem with .o files not going into correct directory## Revision 1.41 2000/02/24 11:17:01 craigs# Fixed problem with making PW projects## Revision 1.40 2000/02/16 12:38:31 craigs# Fixed problem with noshared targets## Revision 1.39 2000/02/04 04:59:31 craigs# Changed for new library make system and makefile layout## Revision 1.38 2000/02/02 04:09:12 craigs# Changed to use subdirectories## Revision 1.35 2000/01/13 04:03:45 robertj# Added video transmission## Revision 1.34 2000/01/04 00:22:28 craigs# Changed directory list## Revision 1.33 1999/12/29 01:27:01 craigs# Added detection of new Linux kernel telephony code## Revision 1.32 1999/12/24 00:27:39 robertj# Added LID abstraction and split RTP classes from H323.## Revision 1.31 1999/12/16 05:48:36 robertj# Fixed problem with correct inclusion of ixj files under Linux.## Revision 1.30 1999/11/19 14:01:41 craigs# Added ixjuser.h to the tarfiles## Revision 1.29 1999/11/19 13:13:40 craigs# Changed to add CVS directories to the tarball## Revision 1.28 1999/11/16 13:45:12 craigs# Fixed dependencies to be SMP friendly## Revision 1.27 1999/11/12 04:51:34 craigs# Fixed problem with excluding IXJ device on Linux## Revision 1.26 1999/11/07 03:43:38 craigs# Added conditional for ixj files for linux only## Revision 1.25 1999/11/02 01:22:26 robertj# Added answering machine## Revision 1.24 1999/10/24 14:43:20 robertj# Added platform independent support for Quicknet xJACK cards.## Revision 1.23 1999/10/11 07:35:03 craigs# Added missing config.h to VIC sources macro## Revision 1.22 1999/09/27 01:22:45 robertj# Added H.261 video support via vic code.## Revision 1.21 1999/09/21 08:33:58 craigs# Added support for VIC video codecs## Revision 1.20 1999/09/09 01:14:49 robertj# Added support for video capabilities & codec, still needs the actual codec itself!## Revision 1.19 1999/09/03 14:05:19 robertj# Fixed creation of tarball## Revision 1.18 1999/08/31 12:43:04 robertj# Added gatekeeper supprt.## Revision 1.17 1999/08/25 07:11:54 robertj# Unix port## Revision 1.16 1999/08/09 04:51:21 robertj# Added subdirectories to build, including dump323## Revision 1.15 1999/07/31 04:09:11 robertj# Added ability to create binary with no tracing code in it.## Revision 1.14 1999/07/26 09:18:28 craigs# Added README.QUICKNET file to test app## Revision 1.13 1999/07/26 07:22:10 craigs# Added files for quicknet test apps## Revision 1.12 1999/07/10 03:42:26 robertj# Added automatic version inclusion in tar file.## Revision 1.11 1999/06/28 09:48:57 robertj# Fixed dependencies for GSM files## Revision 1.10 1999/06/25 17:51:08 robertj# Fixed tarball## Revision 1.9 1999/06/25 17:20:18 robertj# New directory structure.## Revision 1.8 1999/06/22 14:40:19 robertj# Added GSM code.## Revision 1.7 1999/06/14 09:09:36 robertj# Transmit channel and RTP implementation.## Revision 1.6 1999/06/09 06:51:57 robertj# Added tracing to optimised version.## Revision 1.5 1999/06/09 06:18:00 robertj# GCC compatibiltiy.## Revision 1.4 1999/06/07 00:32:41 robertj# Put packet dump code back in## Revision 1.3 1999/06/06 06:06:36 robertj# Changes for new ASN compiler and v2 protocol ASN files.## Revision 1.2 1999/01/16 11:16:53 robertj# Fixed library name## Revision 1.1 1999/01/16 10:32:26 robertj# Initial revision#SUBDIRS := src samples/simpleifneq (,$(wildcard dump323))SUBDIRS += dump323endififneq (,$(wildcard openam))SUBDIRS += openamendififneq (,$(wildcard pstngw))SUBDIRS += pstngwendififneq (,$(wildcard openphone))ifneq (,$(wildcard $(PWLIBDIR)/src/pwlib))SUBDIRS += openphoneendifendif# Pass through commands to the subdirectory for sample appdebug :: set -e; for i in $(SUBDIRS) ; do $(MAKE) -C $$i debug ; doneopt:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i opt; doneboth:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i both; doneclean:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i clean; donedebugshared :: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i P_SHAREDLIB=1 debug ; doneoptshared:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i P_SHAREDLIB=1 opt; donebothshared:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i P_SHAREDLIB=1 both; donedebugnoshared :: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i P_SHAREDLIB=0 debug ; doneoptnoshared:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i P_SHAREDLIB=0 opt; donebothnoshared:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i P_SHAREDLIB=0 both; donedebugclean:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i debugclean; doneoptclean:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i optclean; donebothclean:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i bothclean; donedebugdepend:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i debugdepend; doneoptdepend:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i optdepend; donebothdepend:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i bothdepend; donenotrace:: $(MAKE) NOTRACE=1 optinstall:: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i install; donedocs: doc++ --dir html --tables openh323.dxx
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -