home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / INTERNET / UPC2S1.ZIP / MAIL.MAK < prev    next >
Text File  |  1993-09-20  |  2KB  |  81 lines

  1. # *--------------------------------------------------------------------*
  2. # *     m a i l . m a k                                                *
  3. # *                                                                    *
  4. # *     UUPC/extended BC++ makefile for mail programs                  *
  5. # *                                                                    *
  6. # *     Changes Copyright (c) 1989-1992 by Kendra Electronic           *
  7. # *     Wonderworks.                                                   *
  8. # *                                                                    *
  9. # *     All rights reserved except those explicitly granted by the     *
  10. # *     UUPC/extended license agreement.                               *
  11. # *                                                                    *
  12. # *--------------------------------------------------------------------*
  13.  
  14. # *--------------------------------------------------------------------*
  15. # *                         RCS Information                            *
  16. # *--------------------------------------------------------------------*
  17.  
  18. #     $Id: mail.mak 1.4 1993/09/20 04:36:42 ahd Exp $
  19. #
  20. #     $Log: mail.mak $
  21. # Revision 1.4  1993/09/20  04:36:42  ahd
  22. # TCP/IP support from Dave Watt
  23. # 't' protocol support
  24. # BC++ 1.0 for OS/2 support
  25. #
  26. # Revision 1.3  1993/07/31  16:21:21  ahd
  27. # Windows 3.x support
  28. #
  29. # Revision 1.2  1992/12/04  01:00:13  ahd
  30. # Add sysalias to rmail build
  31.  
  32. !include $(UUPCDEFS)
  33.  
  34. !if $(NDEBUG)
  35. LINKOPT=$(LINKOPTN)
  36. !else
  37. LINKOPT=$(LINKOPTD)
  38. !endif
  39.  
  40. .c.obj:
  41.   $(CC) $(CCX) -I$:{ $<}
  42.  
  43. .asm.obj:
  44.         $(TASM) $(TASMOPT) $<,$(OBJ)\$&;
  45.  
  46. .path.c = $(MAIL)
  47.  
  48. MAILOBJ = $(OBJ)\alias.obj $(OBJ)\mail.obj $(OBJ)\mailblib.obj\
  49.           $(OBJ)\maillib.obj $(OBJ)\mailsend.obj $(OBJ)\mlib.obj\
  50.           $(OBJ)\address.obj
  51.  
  52. RMAILOBJ = $(OBJ)\deliver.obj $(OBJ)\rmail.obj $(OBJ)\address.obj \
  53.            $(OBJ)\sysalias.obj
  54.  
  55. mail$(PSUFFIX).exe: $(UUPCCFG)     $(MAILOBJ) $(LIBRARIES)
  56.         $(LINKER) $(LINKOPT) @&&|
  57. $(STARTUP)+
  58. $(MAILOBJ)
  59. $<
  60. $(MAP)
  61. $(LIBRARY)
  62. $(DEFFILE)
  63. |
  64. !if !$d(__OS2__)
  65.         tdstrip -s $<
  66. !endif
  67.  
  68. rmail$(PSUFFIX).exe: $(UUPCCFG)     $(RMAILOBJ) $(LIBRARIES)
  69.         - erase rmail.com
  70.         $(LINKER) $(LINKOPT) @&&|
  71. $(STARTUP)+
  72. $(RMAILOBJ)
  73. $<
  74. $(MAP)
  75. $(LIBRARY)
  76. $(DEFFILE)
  77. |
  78. !if !$d(__OS2__)
  79.         tdstrip -s $<
  80. !endif
  81.