home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12716.ZIP / BASE next >
Text File  |  1990-09-21  |  328b  |  17 lines

  1. #--------------------
  2. # BASE make file
  3. #--------------------
  4.  
  5. base.obj : base.c base.h
  6.      cl -c -G2sw -W3 base.c
  7.  
  8. base.res : base.rc base.h base.bmp
  9.      rc -r base
  10.  
  11. base.exe : base.obj base.def
  12.      link base, /align:16, NUL, os2, base
  13.      rc base.res base.exe
  14.  
  15. base.exe : base.res
  16.      rc base.res base.exe
  17.