home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mclb.zip / lb.pak / SAMPLES / SAMP6 / MAKEFILE < prev    next >
Text File  |  1995-10-29  |  713b  |  28 lines

  1. # Make File for IBM C/Set compiler
  2.  
  3. all: samp6.EXE
  4. samp6: samp6.EXE
  5.  
  6. #--- Path to MCLB toolkit directory ---
  7. mclbdir = ..\..
  8.  
  9. #For debugging:
  10. #iccflags  = /c /Gd- /Sm /Re /ss /Gm+ /Gt+ /Q /O- /Ti+ /Gh /I$(mclbdir)
  11.  
  12. #For non-debug:
  13. iccflags   = /c /Gd- /Sm /Re /ss /Gm+ /Gt+ /Q /O+ /Ti- /I$(mclbdir) 
  14.  
  15.  
  16. samp6.EXE:    samp6.OBJ samp6.RES samp6.DEF mclb.obj
  17.   link386 /DEBUG /NOE /ALIGN:16 /EXEPACK /M /BASE:0x10000 samp6.OBJ mclb.obj,,,,samp6.DEF;
  18.   rc samp6.RES
  19.  
  20. samp6.OBJ:     samp6.C DIALOG.H
  21.   icc $(iccflags) samp6.C
  22.  
  23. mclb.obj:      $(mclbdir)\mclb.c $(mclbdir)\mclb.h
  24.   icc $(iccflags) $(mclbdir)\mclb.c
  25.  
  26. samp6.RES:    DIALOG.DLG DIALOG.H samp6.RC
  27.   rc -r samp6.RC samp6.RES
  28.