home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12733.ZIP / MAKEFILE < prev    next >
Text File  |  1990-10-17  |  496b  |  30 lines

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