home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 376_01 / os2tool.000 / DIRSERV.MAK < prev    next >
Text File  |  1992-08-19  |  512b  |  22 lines

  1. # Makefile for DIRSERV.EXE
  2. #
  3. # Compiler        : Microsoft C 6.0
  4. # Created         : 19.8.1992
  5. # Copyright (c)   : Martti Ylikoski, 1992
  6. #
  7. # Notes: The llibcep.lib is the default library in my system
  8. #   and is therefore renamed llibce.lib.
  9.  
  10. dirserv.exe: dirserv.obj queue.obj 
  11.    link dirserv.obj queue.obj, , NUL.MAP,llibce mtoolsp, ,
  12.    exehdr /PMTYPE:VIO dirserv.exe
  13.    del dirserv.obj 
  14.  
  15. dirserv.obj: dirserv.c
  16.    CL -AL -c /Lp dirserv.c
  17.  
  18. queue.obj: queue.c
  19.    CL -AL -c /Lp queue.c
  20.  
  21.