home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / RUNNING.ZIP / MAKEFILE next >
Text File  |  1990-02-12  |  444b  |  19 lines

  1. # Makefile for RUNNING and SLAY
  2. #
  3. # Copyright (c) 1989, Christopher Laforet
  4.  
  5. running.obj : running.c running.h
  6.     cl -AC -W3 -Oalnt -Gs -Zp1 -c running.c > running.err
  7.     type running.err
  8.  
  9. running.exe : running.obj
  10.     link running,,,/NOD:clibce clibcep doscalls,running
  11.  
  12.  
  13. slay.obj : slay.c running.h
  14.     cl -AS -W3 -Oalnt -Gs -Zp1 -c slay.c > slay.err
  15.     type slay.err
  16.  
  17. slay.exe : slay.obj
  18.     link slay,,,/NOD:slibce slibcep doscalls,slay
  19.