home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12315.ZIP / HELLO < prev    next >
Text File  |  1989-05-25  |  539b  |  33 lines

  1. cp=cl -c -W3 -AS -G2sw -Od -Zpei
  2.  
  3. .c.obj:
  4.     $(cp) $*.c
  5.  
  6. .asm.obj:
  7.     masm $*.asm;
  8.  
  9. .rc.res:
  10.     rc -r $*.rc
  11.  
  12.  
  13. hello.obj: hello.c hello.h
  14.  
  15. arcp.obj: arcp.c arcp.h
  16.  
  17. command.obj: command.c hello.h
  18.  
  19. common.obj: common.c hello.h
  20.  
  21. paint.obj: paint.c hello.h
  22.  
  23. wndproc.obj: wndproc.c hello.h
  24.  
  25. hello.res: hello.rc hello.ico hello.h arcp.dlg arcp.h
  26.  
  27. hello.exe: hello.obj wndproc.obj paint.obj command.obj \
  28.        common.obj arcp.obj \
  29.            hello.res hello.lnk hello.def 
  30.     link @hello.lnk
  31.     rc hello.res
  32. 
  33.