Makefile
上传用户:wzkunzhan
上传日期:2022-04-23
资源大小:2618k
文件大小:2k
源码类别:

模拟服务器

开发平台:

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.9  2002/08/05 10:10:29  robertj
  30. # Normalised Makefile usage of openh323u.mak include file, fixing odd messages.
  31. #
  32. # Revision 1.8  2001/09/24 22:39:42  craigs
  33. # Added commands to play and record data files, esp G.723.1
  34. #
  35. # Revision 1.7  2001/07/19 10:05:27  rogerh
  36. # PWAVFile is now part of the standard PWLib.
  37. #
  38. # Revision 1.6  2001/07/14 07:34:02  rogerh
  39. # Include wav.cxx
  40. #
  41. # Revision 1.5  2000/04/25 23:34:22  craigs
  42. # Added lots of new code, including outgoing and incoming
  43. # multiplexors, and the start of an IVR system
  44. #
  45. # Revision 1.4  2000/02/02 04:10:55  craigs
  46. # Changed to use common Makefiles
  47. #
  48. # Revision 1.3  1999/10/28 12:26:18  craigs
  49. # Changed version number
  50. #
  51. # Revision 1.2  1999/10/24 04:19:28  craigs
  52. # Added make dist target
  53. #
  54. # Revision 1.1  1999/10/11 00:15:18  craigs
  55. # Initial version
  56. #
  57. #
  58. PROG = H323BeaconServer
  59. SOURCES := main.cxx cmds.cxx
  60. TAR_SOURCES = Makefile main.h main.cxx version.h run_example README.txt new_msg
  61. ifndef PWLIBDIR
  62. PWLIBDIR=$(HOME)/pwlib
  63. endif
  64. include $(PWLIBDIR)/make/ptlib.mak
  65. ifndef OPENH323DIR
  66. OPENH323DIR=$(HOME)/openh323
  67. endif
  68. include $(OPENH323DIR)/openh323u.mak
  69. ifdef NOTRACE
  70. STDCCFLAGS += -DPASN_NOPRINTON -DPASN_LEANANDMEAN
  71. else
  72. STDCCFLAGS += -DPTRACING
  73. endif
  74. # Extra dependencies
  75. $(TARGET): $(H323_LIBFILE)
  76. tarfiles:
  77. @echo $(patsubst %, $(notdir $(shell pwd))/%, $(TAR_SOURCES))
  78. dist:
  79. ( cd ..; tar -czvf H323BeaconServer_0.1alpha2.tgz $(patsubst %, $(notdir $(shell pwd))/%, $(TAR_SOURCES)) )
  80. record: record.c
  81. $(CC) -o $@ $<
  82. playback: playback.c
  83. $(CC) -o $@ $<