home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / blanker / spextn.zip / STICKS < prev    next >
Text File  |  1990-06-13  |  462b  |  21 lines

  1.  
  2. all: sticks.spx
  3.  
  4. .c.obj:
  5.     cl -c -Asnw -Gsw -Oas -Zpe -W3 $*.c >$*.err
  6.  
  7. sticks.obj: sticks.c sticks.h
  8.  
  9. sticks.res: sticks.rc sticks.dlg
  10.     rc -r sticks.rc
  11.  
  12. libentry.obj: libentry.asm
  13.    masm -Mx libentry,libentry;
  14.  
  15. sticks.spx: libentry.obj sticks.obj sticks.def sticks.res
  16.     link sticks libentry, sticks.exe, , /NOE /NOD sdllcew libw, sticks.def
  17.     rc sticks.res
  18.     if exist sticks.spx del sticks.spx
  19.     ren sticks.exe sticks.spx
  20. 
  21.