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

IP电话/视频会议

开发平台:

Visual C++

  1. #
  2. # Makefile
  3. #
  4. # Make file for ptlib library
  5. #
  6. # Portable Windows Library
  7. #
  8. # Copyright (c) 1993-1998 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.5  2000/04/25 23:34:22  craigs
  30. # Added lots of new code, including outgoing and incoming
  31. # multiplexors, and the start of an IVR system
  32. #
  33. # Revision 1.4  2000/02/02 04:10:55  craigs
  34. # Changed to use common Makefiles
  35. #
  36. # Revision 1.3  1999/10/28 12:26:18  craigs
  37. # Changed version number
  38. #
  39. # Revision 1.2  1999/10/24 04:19:28  craigs
  40. # Added make dist target
  41. #
  42. # Revision 1.1  1999/10/11 00:15:18  craigs
  43. # Initial version
  44. #
  45. #
  46. PROG = openam
  47. SOURCES := main.cxx #cmds.cxx
  48. TAR_SOURCES = Makefile main.h main.cxx version.h run_example README.txt new_msg
  49. ifndef PWLIBDIR
  50. PWLIBDIR=$(HOME)/pwlib
  51. endif
  52. include $(PWLIBDIR)/make/ptlib.mak
  53. ifndef OPENH323DIR
  54. OPENH323DIR=$(HOME)/openh323
  55. endif
  56. include $(OPENH323DIR)/openh323u.mak
  57. ifdef NOTRACE
  58. STDCCFLAGS += -DPASN_NOPRINTON -DPASN_LEANANDMEAN
  59. else
  60. STDCCFLAGS += -DPTRACING
  61. endif
  62. # Extra dependencies
  63. $(TARGET): $(H323_LIBFILE)
  64. tarfiles:
  65. @echo $(patsubst %, $(notdir $(shell pwd))/%, $(TAR_SOURCES))
  66. dist:
  67. ( cd ..; tar -czvf openam_0.1alpha2.tgz $(patsubst %, $(notdir $(shell pwd))/%, $(TAR_SOURCES)) )
  68. record: record.c
  69. $(CC) -o $@ $<
  70. playback: playback.c
  71. $(CC) -o $@ $<