home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / seedump.zip / SAMPLES / MAKEFILE.IBM < prev    next >
Text File  |  1995-09-04  |  353b  |  17 lines

  1. # Makefile for test programs for SeeDump
  2. #
  3. # Note that the "-Op-" switch is neccessary in order
  4. # to prevent icc from stack pointer optimization.
  5. #
  6.  
  7. all: xall.exe t.exe
  8.  
  9. .c.obj:
  10.   icc -C -Ss -Op- -Ti $<
  11.  
  12. xall.exe: xall.obj 
  13.         icc -Ss -Ti -Op- $** dumper.lib
  14.  
  15. t.exe: t.obj crash.obj tt.obj 
  16.         icc -Ss -Ti -Op- $** dumper.lib
  17.