Makefile.config.solaris-2.6
上传用户: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. # SOLARIS 2.6
  31. # --------------------------------------------------------------------
  32. PLATFORM = -DSOLARIS
  33. CC       = gcc
  34. MAKE     = make
  35. CFLAGS   = -g -I. -Wall -pedantic $(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. MGLOBALSMSRC  = $(PREFIX)/etc/sms/sms_addressbook
  67. MSERVICEDIR   = $(PREFIX)/etc/sms
  68. MLOGFILE      = /var/adm/smslog
  69. MSNPPDLOGFILE = /var/adm/snppdlog
  70. MSMSDLOGFILE  = /var/adm/smsdlog
  71. MVERSION      = 2.0.7k
  72. # --------------------------------------------------------------------
  73. # SMS_Client can be built to use the libmodem package or
  74. # its own internal modem routines. Currently the internal routines
  75. # are known to be unstable and are still considered to be in ALPHA
  76. # Valid Values for MODEMLIB are:
  77. #
  78. # $(LIBMODEM) - use the libmodem-1.0.0 packages with patches
  79. #  $(SMSMODEM) - use the internal modem routines
  80. LIBMODEM = 1
  81. SMSMODEM = 2
  82. MODEMLIB = $(SMSMODEM)
  83. # --------------------------------------------------------------------
  84. BINDIR  = /usr/bin
  85. ETCDIR  = /etc
  86. MANDIR  = /usr/man
  87. MANEXT  = 1
  88. INSTALL = /usr/bin/install
  89. RM      = /bin/rm -f
  90. CP      = /bin/cp
  91. TR = /usr/bin/tr
  92. AR = /usr/bin/ar
  93. STRIP   = /usr/bin/strip
  94. # --------------------------------------------------------------------
  95. # SOLARIS
  96. # --------------------------------------------------------------------
  97. AR = /usr/ccs/bin/ar
  98. # --------------------------------------------------------------------