📄 makefile
字号:
#
# Makefile
#
# Make file for OpenPhone
#
# Portable Windows Library
#
# Copyright (c) 1993-1999 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 Portable Windows Library.
#
# The Initial Developer of the Original Code is Equivalence Pty. Ltd.
#
# Portions are Copyright (C) 1993 Free Software Foundation, Inc.
# All Rights Reserved.
#
# Contributor(s): ______________________________________.
#
# $Log: Makefile,v $
# Revision 1.7 2000/02/24 11:17:02 craigs
# Fixed problem with making PW projects
#
# Revision 1.6 1999/12/16 06:21:37 robertj
# Fixed missing OpenH323 library accidently taken out in previous revision
#
# Revision 1.5 1999/12/08 22:04:04 craigs
# Added comments for Motif compilation
#
# Revision 1.4 1999/10/30 13:27:58 robertj
# Fixed compile of notrace version of resources.
#
# Revision 1.3 1999/09/03 14:05:19 robertj
# Fixed creation of tarball
#
# Revision 1.2 1999/08/27 13:15:05 craigs
# Added resource file
#
# Revision 1.1 1999/08/25 07:11:54 robertj
# Unix port
#
PROG = openphone
SOURCES := main.cxx
RESOURCE := resources.prc
TAR_SOURCES = Makefile main.h $(SOURCES) $(RESOURCE)
ifndef PWLIBDIR
PWLIBDIR=$(HOME)/pwlib
endif
include $(PWLIBDIR)/make/pwlib.mak
ifndef OPENH323DIR
OPENH323DIR=$(HOME)/openh323
endif
include $(OPENH323DIR)/openh323u.mak
# Include the following line for Motif (as opposed to Lesstif)
#LDLIBS += -lXp
tarfiles:
@echo $(patsubst %, $(notdir $(shell pwd))/%, $(TAR_SOURCES))
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -