home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lstbx2.zip / ibmlst.mak < prev    next >
Text File  |  1994-04-28  |  951b  |  46 lines

  1.  
  2. # MAKE file for IBMLst.MAK     Version 1.1
  3.  
  4. # Revised:  1994-04-20
  5.  
  6. # Copyright ╕ 1987-1994  Prominare Inc.
  7.  
  8. # MAKE file created by Prominare Builder  Version 2.1b
  9.  
  10. # Macro definitions
  11.  
  12. CC=ICC
  13. RC=RC
  14. # C_SW=-G3e- -O- -Oi- -Op- -Os- -Ti -Rn -W3 -C
  15. C_SW=-G4e- -O+ -Rn -W3 -C
  16. RC_SW=-r
  17.  
  18. ListBox.Dll: EventMgr.Obj heapmgr.Obj\
  19.              listbox.Obj listmgr.Obj\
  20.              SndMgr.Obj TraffMgr.Obj
  21.  Link386 /NOE @IBMList.Lnk;
  22.  rc -x listbox.res listbox.dll
  23.  implib listbox.lib listbox.def
  24.  
  25. EventMgr.Obj: EventMgr.C
  26.  $(CC) $(C_SW) -Fo$*.Obj EventMgr.C
  27.  
  28. heapmgr.Obj: heapmgr.c
  29.  $(CC) $(C_SW) -Fo$*.Obj heapmgr.c
  30.  
  31. listbox.Obj: listbox.c
  32.  $(CC) $(C_SW) -Fo$*.Obj listbox.c
  33.  
  34. Listbox.Res: Listbox.Rc
  35.  $(RC) $(RC_SW) Listbox.Rc $*.Res
  36.  
  37. listmgr.Obj: listmgr.c
  38.  $(CC) $(C_SW) -Fo$*.Obj listmgr.c
  39.  
  40. SndMgr.Obj: SndMgr.C
  41.  $(CC) $(C_SW) -Fo$*.Obj SndMgr.C
  42.  
  43. TraffMgr.Obj: TraffMgr.C
  44.  $(CC) $(C_SW) -Fo$*.Obj TraffMgr.C
  45.  
  46.