home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / memory / stack / hello.mak < prev    next >
Text File  |  1988-12-15  |  316b  |  13 lines

  1. stack.obj: stack.asm
  2.     masm -i\include -D?S stack.asm;
  3.  
  4. hello.obj: hello.c hello.h
  5.     cl -d -c -AS -Gsw -Os -Zpe hello.c
  6.  
  7. hello.res: hello.rc hello.ico hello.h
  8.     rc -r hello.rc
  9.  
  10. hello.exe: hello.obj hello.res hello.def stack.obj
  11.     link4 hello stack,/align:16,/map,slibw,hello.def
  12.     rc hello.res
  13.