home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 7.ddi / MWHC.007 / Q9 < prev    next >
Encoding:
Text File  |  1991-10-24  |  1.3 KB  |  47 lines

  1. ################################################################
  2. #
  3. #   MakeFile for Microsoft SDK examples and the MetaWare
  4. #   Windows Application Development Kit.
  5. #
  6. #   The example program in this directory is Copyright 1990,
  7. #   Microsoft Corporation, and has been modified by MetaWare
  8. #   to operate under the MetaWare Windows ADK.
  9. #
  10. #
  11. #   Note:  This makefile includes vars.mak, which normally
  12. #          resides two directory levels up (..\..).  If you
  13. #          change the directory structure, or use a make 
  14. #          program that uses a different style include
  15. #          directive, you will have to modify the following 
  16. #          include statement.
  17. #
  18. ################################################################
  19.  
  20. !include ../../vars.mak
  21.  
  22. all: memory.exe
  23.  
  24. memory.res: memory.rc memory.h
  25.     $(RC) -r memory.rc
  26.  
  27. memory1.obj: memory1.c memory.h
  28.     $(HC) -c -Hwin memory1.c
  29.  
  30. memory2.obj: memory2.c memory.h
  31.     $(HC) -c -Hwin memory2.c
  32.  
  33. memory3.obj: memory3.c memory.h
  34.     $(HC) -c -Hwin memory3.c
  35.  
  36. memory4.obj: memory4.c memory.h
  37.     $(HC) -c -Hwin memory4.c
  38.  
  39. memory.exp: memory1.obj memory2.obj memory3.obj memory4.obj 
  40.     $(HC) -Hwin memory1 memory2 memory3 memory4 -o memory
  41.  
  42. memory.exe: memory.exp memory.res
  43.     copy $(MWSUP) .
  44.     $(RC) -fe mwsup.exe memory.res
  45.     $(MWBIND) mwsup.exe memory.exp memory.exe
  46.     del mwsup.exe
  47.