Makefile.config.unixware
上传用户:mei_mei897
上传日期:2007-01-05
资源大小:82k
文件大小:4k
源码类别:

手机短信编程

开发平台:

Unix_Linux

  1. # -------------------------------------------------------------------- 
  2. # SMS Client, send messages to mobile phones and pagers
  3. #
  4. # Makefile.config
  5. #
  6. #  Copyright (C) 1997,1998 Angelo Masci
  7. #
  8. #  This library is free software; you can redistribute it and/or
  9. #  modify it under the terms of the GNU Library General Public
  10. #  License as published by the Free Software Foundation; either
  11. #  version 2 of the License, or (at your option) any later version.
  12. #
  13. #  This library is distributed in the hope that it will be useful,
  14. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. #  Library General Public License for more details.
  17. #
  18. #  You should have received a copy of the GNU Library General Public
  19. #  License along with this library; if not, write to the Free
  20. #  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. #
  22. #  You can contact the author at this e-mail address:
  23. #
  24. #  angelo@styx.demon.co.uk
  25. #
  26. # -------------------------------------------------------------------- 
  27. # $Id$
  28. # -------------------------------------------------------------------- 
  29. # --------------------------------------------------------------------
  30. # UNIXWARE
  31. # --------------------------------------------------------------------
  32. PLATFORM = -DUNIXWARE
  33. CC       = cc
  34. MAKE     = make
  35. CFLAGS   = -I. -Xa $(PLATFORM)
  36. XTRALIBS = -lsocket -lnsl
  37. # --------------------------------------------------------------------
  38. # Drivers for several protocols have been written, 
  39. # include them into the build simply by adding them to the
  40. # DRIVERS line below.
  41. #
  42. # TAP          Standard SMS protocol
  43. # VODAFONE  verbose UK protocol
  44. # ORANGE  verbose UK protocol
  45. # PAGEONE verbose UK protocol
  46. # ONE2ONE verbose UK protocol
  47. # VODACOM verbose South African protocol
  48. # MTN verbose South African protocol
  49. #       LIBERTEL        verbose Dutch Libertel protocol
  50. #       TIM             verbose Italian Telecom Italia Mobile protocol
  51. #       PROXIMUS         Belgium protocol
  52. #       VODAPAGE_BLOCK         UK protocol
  53. # KPN  verbose Dutch protocol
  54. # ANSWER  verbose protocol
  55. #
  56. #       SNPP    - ALPHA experimental rfc1861 client
  57. #       CIMD    - ALPHA
  58. #       GENERIC - ALPHA
  59. #
  60. DRIVERS = ORANGE VODAFONE PAGEONE ONE2ONE     
  61.   TAP VODACOM MTN LIBERTEL TIM        
  62.   SNPP CIMD VODAPAGE_BLOCK PROXIMUS   
  63.   KPN ANSWER GENERIC
  64. # --------------------------------------------------------------------
  65. MLOCALSMSRC   = .sms_addressbook
  66. MVERSION      = 2.0.7k
  67. # --------------------------------------------------------------------
  68. # UNIXWARE
  69. # --------------------------------------------------------------------
  70. MGLOBALSMSRC  = $(PREFIX)/etc/opt/sms/sms_addressbook
  71. MSERVICEDIR   = $(PREFIX)/etc/opt/sms
  72. MLOGFILE      = /var/opt/sms/smslog
  73. MSNPPDLOGFILE = /var/opt/sms/snppdlog
  74. MSMSDLOGFILE  = /var/opt/sms/smsdlog
  75. # --------------------------------------------------------------------
  76. # SMS_Client can be built to use the libmodem package or
  77. # its own internal modem routines. Currently the internal routines
  78. # are known to be unstable and are still considered to be in ALPHA
  79. # Valid Values for MODEMLIB are:
  80. #
  81. # $(LIBMODEM) - use the libmodem-1.0.0 packages with patches
  82. #  $(SMSMODEM) - use the internal modem routines
  83. LIBMODEM = 1
  84. SMSMODEM = 2
  85. MODEMLIB = $(SMSMODEM)
  86. # --------------------------------------------------------------------
  87. MANEXT  = 1
  88. RM      = /bin/rm -f
  89. CP      = /bin/cp
  90. TR = /usr/bin/tr
  91. AR = /usr/bin/ar
  92. STRIP   = /usr/bin/strip
  93. # --------------------------------------------------------------------
  94. # UNIXWARE
  95. # --------------------------------------------------------------------
  96. BINDIR  = /opt/sms/bin
  97. ETCDIR  = /etc/opt/sms
  98. MANDIR  = /opt/sms/man
  99. INSTALL = /usr/bin/install
  100. # --------------------------------------------------------------------