Makefile
上传用户:sdyzjx
上传日期:2007-01-06
资源大小:47k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. #
  2. # Makefile
  3. #
  4. # Make file for OpenPhone
  5. #
  6. # Portable Windows Library
  7. #
  8. # Copyright (c) 1993-1999 Equivalence Pty. Ltd.
  9. #
  10. # The contents of this file are subject to the Mozilla Public License
  11. # Version 1.0 (the "License"); you may not use this file except in
  12. # compliance with the License. You may obtain a copy of the License at
  13. # http://www.mozilla.org/MPL/
  14. #
  15. # Software distributed under the License is distributed on an "AS IS"
  16. # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17. # the License for the specific language governing rights and limitations
  18. # under the License.
  19. #
  20. # The Original Code is Portable Windows Library.
  21. #
  22. # The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23. #
  24. # Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25. # All Rights Reserved.
  26. # Contributor(s): ______________________________________.
  27. #
  28. # $Log: Makefile,v $
  29. # Revision 1.7  2000/02/24 11:17:02  craigs
  30. # Fixed problem with making PW projects
  31. #
  32. # Revision 1.6  1999/12/16 06:21:37  robertj
  33. # Fixed missing OpenH323 library accidently taken out in previous revision
  34. #
  35. # Revision 1.5  1999/12/08 22:04:04  craigs
  36. # Added comments for Motif compilation
  37. #
  38. # Revision 1.4  1999/10/30 13:27:58  robertj
  39. # Fixed compile of notrace version of resources.
  40. #
  41. # Revision 1.3  1999/09/03 14:05:19  robertj
  42. # Fixed creation of tarball
  43. #
  44. # Revision 1.2  1999/08/27 13:15:05  craigs
  45. # Added resource file
  46. #
  47. # Revision 1.1  1999/08/25 07:11:54  robertj
  48. # Unix port
  49. #
  50. PROG = openphone
  51. SOURCES := main.cxx
  52. RESOURCE := resources.prc
  53. TAR_SOURCES = Makefile main.h $(SOURCES) $(RESOURCE)
  54. ifndef PWLIBDIR
  55. PWLIBDIR=$(HOME)/pwlib
  56. endif
  57. include $(PWLIBDIR)/make/pwlib.mak
  58. ifndef OPENH323DIR
  59. OPENH323DIR=$(HOME)/openh323
  60. endif
  61. include $(OPENH323DIR)/openh323u.mak
  62. # Include the following line for Motif (as opposed to Lesstif)
  63. #LDLIBS += -lXp
  64. tarfiles:
  65. @echo $(patsubst %, $(notdir $(shell pwd))/%, $(TAR_SOURCES))