home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / mag&info / msjv7_6.zip / TOPTEN.ARJ / ETO.ARJ / ETO < prev    next >
Text File  |  1992-10-01  |  525b  |  23 lines

  1. cp=cl -c -D -NT $* LINT_ARGS -AM -G2Ws -Fc -Od -W3 -Zde 
  2.  
  3. .c.obj:
  4.     $(cp) $*.c
  5.  
  6. all: eto.exe
  7.  
  8. eto.res : eto.rc eto.h
  9.   rc -r eto.rc
  10.  
  11. eto.pch : basedefs.h 
  12.   cl /Yceto.h -nologo -Fc -c -D -NT eto LINT_ARGS -AM -G2ws -Od -W3 -Zidpe eto.c
  13.  
  14. eto.obj : eto.c eto.pch
  15.   cl /Yueto.h -nologo -Fc -c -D -NT eto LINT_ARGS -AM -G2ws -Od -W3 -Zidpe eto.c
  16.  
  17. eto.exe : eto.pch      \
  18.             eto.obj      \
  19.             eto.res    
  20.    link /CO/NOE/NOD eto,/align:16,,libw mlibcew,eto.def
  21.    rc -t -30 eto.res
  22.    
  23.