home *** CD-ROM | disk | FTP | other *** search
/ vsiftp.vmssoftware.com / VSIPUBLIC@vsiftp.vmssoftware.com.tar / FREEWARE / FREEWARE40.ZIP / pine / descrip.mms < prev    next >
Text File  |  1994-04-11  |  2KB  |  56 lines

  1. #
  2. #  MMS (MMK) build procedure for Pine V3.89
  3. #
  4. #  Written by Hunter Goatley <goathunter@WKUVX1.WKU.EDU>,  6-APR-1994 09:11
  5. #  Eg / 8.4.94: Mod. for better Alpha support
  6. #
  7. #  By default, Pine is built with NETLIB support.
  8. #
  9. #  To build Pine, use:
  10. #
  11. #    $ MMS/MACRO=(macros)
  12. #
  13. #  To build on AXP, include __ALPHA__ in the "macros".
  14. #  To build with Hebrew support, include HEBREW in the "macros".
  15. #  To build with MultiNet support, include MULTINET in the "macros".
  16. #
  17. .IFDEF MULTINET
  18. TCPIP = MULTINET=1
  19. .ELSE
  20. TCPIP = NETLIB=1
  21. .ENDIF
  22.  
  23. .IFDEF __ALPHA__
  24. MACRO = __ALPHA__=1,$(TCPIP)
  25. .ELSE
  26. MACRO = $(TCPIP)
  27. .ENDIF
  28.  
  29. .IFDEF HEBREW
  30. MMS_MACROS = /MACRO=(HEBREW=1,$(MACRO))
  31. .ELSE
  32. MMS_MACROS = /MACRO=($(MACRO))
  33. .ENDIF
  34.  
  35. PINE :
  36.     set default [.pico]
  37.     $(MMS)$(MMS_MACROS) /IGNORE=WARNING
  38.     set default [-.c-client]
  39.     $(MMS)$(MMS_MACROS) /IGNORE=WARNING
  40.     set default [-.pine]
  41.     $(MMS)$(MMS_MACROS) /IGNORE=WARNING
  42.     @ write sys$output "Executables can be found in:"
  43.     @ write sys$output ""
  44.     @ write sys$output "[.PICO]PICO.EXE - The stand-alone editor (not needed)."
  45.     @ write sys$output "[.C-CLIENT]MTEST.EXE - Interactive testing program (not needed)."
  46.     @ write sys$output "[.C-CLIENT]IMAPD.EXE - the IMAP daemon. Should be copied elsewhere and defined"
  47.     @ write sys$output "                       in the INETD.CONF file or equivalent."
  48.     @ write sys$output "[.PINE]PINE.EXE - What you waited for..."
  49.     @ write sys$output ""
  50.     !PINE built
  51.  
  52. .FIRST
  53.     @ COPY/LOG [.PICO]OSDEP_VMS.H [.PICO]OSDEP.H;
  54.     @ COPY/LOG [.C-CLIENT]OSDEP_VMS.H [.C-CLIENT]OSDEP.H;
  55.     @ copy/log [.PINE]OS_VMS.H [.PINE]OS.H;
  56.