home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / d / d020_1_4 / 6.ddi / MEMORY / MEMORY < prev    next >
Encoding:
Text File  |  1990-06-01  |  666 b   |  24 lines

  1. all: memory.exe
  2.  
  3. memory.res: memory.rc memory.h
  4.     rc -r memory.rc
  5.  
  6. memory1.obj: memory1.c memory.h
  7.     cl -c -AM -Gsw -Oas -Zpe -NT MEMORY_MAIN memory1.c
  8.  
  9. memory2.obj: memory2.c memory.h
  10.     cl -c -AM -Gsw -Oas -Zpe -NT MEMORY_INIT memory2.c
  11.  
  12. memory3.obj: memory3.c memory.h
  13.     cl -c -AM -Gsw -Oas -Zpe -NT MEMORY_WNDPROC memory3.c
  14.  
  15. memory4.obj: memory4.c memory.h
  16.     cl -c -AM -Gsw -Oas -Zpe -NT MEMORY_ABOUT memory4.c
  17.  
  18. memory.exe: memory1.obj memory2.obj memory3.obj memory4.obj memory.def
  19.     link /NOD memory1 memory2 memory3 memory4, memory.exe, , mlibcew libw, memory.def
  20.     rc memory.res
  21.  
  22. memory.exe: memory.res
  23.     rc memory.res
  24.