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

  1. # Make File for IBM C/Set compiler
  2.  
  3. all: samp5.EXE
  4. samp5: samp5.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. samp5.EXE:    samp5.OBJ samp5.RES samp5.DEF dmlb.obj
  17.   link386 /DEBUG /NOE /ALIGN:16 /EXEPACK /M /BASE:0x10000 samp5.OBJ dmlb.obj,,,,samp5.DEF;
  18.   rc samp5.RES
  19.  
  20. samp5.OBJ:     samp5.C DIALOG.H
  21.   icc $(iccflags) samp5.C
  22.  
  23. dmlb.obj:      $(mclbdir)\dmlb.c $(mclbdir)\dmlb.h
  24.   icc $(iccflags) $(mclbdir)\dmlb.c
  25.  
  26. samp5.RES:    DIALOG.DLG DIALOG.H samp5.RC
  27.   rc -r -I $(mclbdir) samp5.RC samp5.RES
  28.