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

  1.  
  2. # MAKE file for WCLst.MAK     Version 1.1
  3.  
  4. # Revised:  1994-04-21
  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=Wcl386
  13. RC=rc
  14. C_SW=-c -ms -3s -bd -s -od -d2 -zp4 -w3 
  15. RC_SW=-r 
  16.  
  17.  
  18. ListBox.Dll: EventMgr.Obj heapmgr.Obj listbox.Obj\
  19.              Listbox.Res listmgr.Obj SndMgr.Obj\
  20.              TraffMgr.Obj
  21.  WLink DEBUG ALL @WCLst.LNK
  22.  rc listbox.res listbox.dll
  23.  
  24. EventMgr.Obj: EventMgr.C
  25.  $(CC) $(C_SW)-fo=$*.Obj EventMgr.C
  26.  
  27. heapmgr.Obj: heapmgr.c
  28.  $(CC) $(C_SW)-fo=$*.Obj heapmgr.c
  29.  
  30. listbox.Obj: listbox.c
  31.  $(CC) $(C_SW)-fo=$*.Obj listbox.c
  32.  
  33. Listbox.Res: Listbox.Rc
  34.  $(RC) $(RC_SW) Listbox.Rc $*.Res
  35.  
  36. listmgr.Obj: listmgr.c
  37.  $(CC) $(C_SW)-fo=$*.Obj listmgr.c
  38.  
  39. SndMgr.Obj: SndMgr.C
  40.  $(CC) $(C_SW)-fo=$*.Obj SndMgr.C
  41.  
  42. TraffMgr.Obj: TraffMgr.C
  43.  $(CC) $(C_SW)-fo=$*.Obj TraffMgr.C
  44.  
  45.