home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12679.ZIP / HELLO next >
Text File  |  1990-08-24  |  861b  |  41 lines

  1. # HELLO makefile 
  2. # Created by Microsoft Corp., 1988
  3. #
  4.  
  5. #===================================================================
  6. #
  7. #  Standard command line definitions
  8. #
  9. #===================================================================
  10.  
  11. cp=cl -c -W3 -AS -G2s -Os -Zpei
  12.  
  13. #===================================================================
  14. #
  15. #  Default inference rules
  16. #
  17. #===================================================================
  18.  
  19. .c.obj:
  20.     $(cp) $*.c
  21.  
  22. .asm.obj:
  23.     masm $*.asm;
  24.  
  25. .rc.res:
  26.     rc -r $*.rc
  27.  
  28. #===================================================================
  29. #
  30. #  Dependencies
  31. #
  32. #===================================================================
  33.  
  34. hello.obj: hello.c hello.h
  35.  
  36. hello.res: hello.rc hello.h
  37.  
  38. hello.exe: hello.obj hello.res hello.lnk hello.def
  39.     link @hello.lnk
  40.     rc hello.res
  41.