home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / winsock / wstim101 / src / ntime.mak < prev    next >
Encoding:
Text File  |  1995-05-19  |  1.2 KB  |  74 lines

  1. .AUTODEPEND
  2.  
  3. #               *Translator Definitions*
  4. CC = bcc +NTIME.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = D:\BORLANDC\LIB
  9. INCLUDEPATH = D:\BORLANDC\INCLUDE
  10.  
  11.  
  12. #               *Implicit Rules*
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .cpp.obj:
  17.   $(CC) -c {$< }
  18.  
  19. #               *List Macros*
  20. Link_Exclude =  \
  21.  ntime.res
  22.  
  23. Link_Include =  \
  24.  dsplist.obj \
  25.  ntime.obj \
  26.  netwrkm.obj \
  27.  ntime.def \
  28.  \borlandc\lib\winsock.lib \
  29.  \borlandc\lib\ctl3d.lib
  30.  
  31. #               *Explicit Rules*
  32. ntime.exe: ntime.cfg $(Link_Include) $(Link_Exclude)
  33.   $(TLINK) /x/n/c/P-/Twe/L$(LIBPATH) @&&|
  34. c0ws.obj+
  35. dsplist.obj+
  36. ntime.obj+
  37. netwrkm.obj
  38. ntime
  39.         # no map file
  40. \borlandc\lib\winsock.lib+
  41. \borlandc\lib\ctl3d.lib+
  42. import.lib+
  43. cws.lib
  44. ntime.def
  45. |
  46.   RC  ntime.res ntime.exe
  47.  
  48.  
  49. #               *Individual File Dependencies*
  50. dsplist.obj: ntime.cfg dsplist.c 
  51.  
  52. ntime.obj: ntime.cfg ntime.c 
  53.  
  54. netwrkm.obj: ntime.cfg netwrkm.c 
  55.  
  56. ntime.res: ntime.cfg ntime.rc 
  57.     RC -R -I$(INCLUDEPATH) -FO ntime.res NTIME.RC
  58.  
  59. #               *Compiler Configuration File*
  60. ntime.cfg: ntime.mak
  61.   copy &&|
  62. -3
  63. -f-
  64. -W
  65. -vi-
  66. -wpro
  67. -weas
  68. -wpre
  69. -I$(INCLUDEPATH)
  70. -L$(LIBPATH)
  71. | ntime.cfg
  72.  
  73.  
  74.