home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / memsz331.zip / Source.zip / SNAPSHOT < prev    next >
Text File  |  1994-12-22  |  534b  |  22 lines

  1. # Build SNAPSHOT program.
  2. # This module is intended to be included into a more complete Make file.
  3.  
  4. SnapShot.exe : SnapShot.obj Debug.obj Module.obj Restring.obj
  5.    ICC.EXE @<<
  6.  /B" /pmtype:vio /nologo" /Q
  7.  /Fe"SNAPSHOT.EXE" SNAPSHOT.DEF
  8.  SNAPSHOT.OBJ
  9.  DEBUG.OBJ
  10.  MODULE.OBJ
  11.  RESTRING.OBJ
  12. <<
  13.  
  14. SnapShot.obj : SnapShot.cpp MemSize.h Module.h Restring.h Support.h
  15.  
  16. Debug.obj : Debug.cpp Debug.h HrTimer.h
  17.  
  18. Module.obj : Module.cpp Debug.h HrTimer.h Module.h
  19.  
  20. Restring.obj : Restring.cpp Debug.h HrTimer.h Restring.h
  21.  
  22.