home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / RSTART14.ZIP / RESTART < prev   
Encoding:
Text File  |  1993-09-01  |  544 b   |  18 lines

  1. #**************************************
  2. # Restart Make File
  3. #**************************************
  4.  
  5. restart.exe: restart.obj restart.def restart.res
  6.         link restart, /align:16, NUL, /nod slibcew libw, restart
  7.         rc restart.res
  8.  
  9. #*****************************************************
  10. # Use -Ow option to optimize or -Od for fast compile!
  11. #*****************************************************
  12. restart.obj: restart.c
  13.         cl -c -G2sw -Ow -W2 -Zp restart.c
  14.  
  15. restart.res: restart.rc
  16.         rc -r restart.rc
  17.         
  18.