home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / EXTRAS / UUCODE / UUPC / TEST / UPC12ES4.ZIP / RNEWS / rnews.mak < prev   
Encoding:
Text File  |  1993-10-31  |  2.6 KB  |  111 lines

  1. # *--------------------------------------------------------------------*
  2. # *     r n e w s . m a k                                              *
  3. # *                                                                    *
  4. # *     Changes Copyright (c) 1989-1993 by Kendra Electronic           *
  5. # *     Wonderworks.                                                   *
  6. # *                                                                    *
  7. # *     All rights reserved except those explicitly granted by the     *
  8. # *     UUPC/extended license agreement.                               *
  9. # *--------------------------------------------------------------------*
  10.  
  11. #     $Id: rnews.mak 1.5 1993/10/31 11:57:13 ahd Exp $
  12. #
  13. #     Revision history:
  14. #     $Log: rnews.mak $
  15. # Revision 1.5  1993/10/31  11:57:13  ahd
  16. # Add inews, genhist, and history support from Kai Uwe Rommel
  17. #
  18. # Revision 1.4  1993/09/20  04:36:42  ahd
  19. # TCP/IP support from Dave Watt
  20. # 't' protocol support
  21. # BC++ 1.0 for OS/2 support
  22. #
  23. # Revision 1.3  1993/07/31  16:21:21  ahd
  24. # Windows 3.x support
  25. #
  26.  
  27. !include $(UUPCDEFS)
  28.  
  29. !if $(NDEBUG)
  30. LINKOPT=$(LINKOPTN)
  31. !else
  32. LINKOPT=$(LINKOPTD)
  33. !endif
  34.  
  35. .c.obj:
  36.   $(CC) $(CCX) -I$:{ $<}
  37.  
  38. .asm.obj:
  39.         $(TASM) $(TASMOPT) $<,$(OBJ)\$&;
  40.  
  41. .path.c = $(RNEWS)
  42.  
  43. RNEWSOBJ = $(OBJ)\rnews.obj $(OBJ)\history.obj $(OBJ)\idx.obj $(OBJ)\hdbm.obj
  44.  
  45. EXPIREOBJ = $(OBJ)\expire.obj $(OBJ)\history.obj \
  46.            $(OBJ)\idx.obj $(OBJ)\hdbm.obj
  47. GENHISTOBJ = $(OBJ)\genhist.obj $(OBJ)\history.obj $(OBJ)\idx.obj $(OBJ)\hdbm.obj
  48. INEWSOBJ = $(OBJ)\inews.obj
  49.  
  50. rnews$(PSUFFIX).exe: $(UUPCCFG)     $(RNEWSOBJ) $(LIBRARIES)
  51.         - erase rnews.com
  52.         $(LINKER) $(LINKOPT) @&&|
  53. $(STARTUP)+
  54. $(RNEWSOBJ)
  55. $<
  56. $(MAP)
  57. $(LIBRARY)
  58. |
  59. !if !$d(__OS2__)
  60.         tdstrip -s $<
  61. !endif
  62.  
  63. expire.com: $(UUPCCFG)     $(EXPIREOBJ) $(LIBRARIES)
  64.         - erase expire.exe
  65.         $(LINKER) $(LINKOPTT) @&&|
  66. $(STARTUPT)+
  67. $(EXPIREOBJ)
  68. $<
  69. $(MAP)
  70. $(LIBRARY)
  71. |
  72.  
  73. expire$(PSUFFIX).exe: $(UUPCCFG)     $(EXPIREOBJ) $(LIBRARIES)
  74.         - erase expire.com
  75.         $(LINKER) $(LINKOPT) @&&|
  76. $(STARTUP)+
  77. $(EXPIREOBJ)
  78. $<
  79. $(MAP)
  80. $(LIBRARY)
  81. |
  82. !if !$d(__OS2__)
  83.         tdstrip -s $<
  84. !endif
  85.  
  86. genhist$(PSUFFIX).exe: $(UUPCCFG)     $(GENHISTOBJ) $(LIBRARIES)
  87.         - erase genhist.com
  88.         $(LINKER) $(LINKOPT) @&&|
  89. $(STARTUP)+
  90. $(GENHISTOBJ)
  91. $<
  92. $(MAP)
  93. $(LIBRARY)
  94. |
  95. !if !$d(__OS2__)
  96.         tdstrip -s $<
  97. !endif
  98.  
  99. inews$(PSUFFIX).exe: $(UUPCCFG)     $(INEWSOBJ) $(LIBRARIES)
  100.         - erase inews.com
  101.         $(LINKER) $(LINKOPT) @&&|
  102. $(STARTUP)+
  103. $(INEWSOBJ)
  104. $<
  105. $(MAP)
  106. $(LIBRARY)
  107. |
  108. !if !$d(__OS2__)
  109.         tdstrip -s $<
  110. !endif
  111.