home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a066 / 1.img / MAKEFILE < prev    next >
Encoding:
Text File  |  1992-03-20  |  1.2 KB  |  40 lines

  1. # makefile for Class(y) demonstration programs and library source
  2. #
  3. # This makefile is designed for use with either the Borland or
  4. # Zortech MAKE utilities.  If you do not have one of these, use
  5. # the batch file MAKEALL.BAT.
  6.  
  7. CLIP_SWITCHES = /n/w/a/b
  8.  
  9. .prg.obj :
  10.     clipper $* $(CLIP_SWITCHES)
  11.  
  12. wintest.exe : wintest.obj
  13.     rtlink fi wintest lib csysampl, classy
  14.  
  15. heritest.exe : heritest.obj htbox.obj
  16.     rtlink fi heritest, htbox lib csysampl, classy
  17.  
  18. testscrn.exe : testscrn.obj scrnrect.obj rectangl.obj
  19.     rtlink fi testscrn, scrnrect, rectangl lib csysampl, classy
  20.  
  21. testrect.exe : testrect.obj rectangl.obj
  22.     rtlink fi testrect, rectangl lib csysampl, classy
  23.  
  24. menudemo.exe : menudemo.obj basemenu.obj popupmenu.obj menubar.obj menuitem.obj pulldnmenu.obj
  25.     rtlink fi menudemo.obj, basemenu.obj, popupmenu.obj, menubar.obj, \
  26.             menuitem.obj, pulldnmenu.obj  lib csysampl, classy
  27.  
  28. dictdemo.exe : dictdemo.obj dict.obj assoc.obj
  29.         rtlink fi dictdemo, dict, assoc lib csysampl, classy
  30.  
  31. dbrowdem.exe : dbrowdem.obj dbrowse.obj
  32.         rtlink fi dbrowdem, dbrowse lib csysampl, classy
  33.  
  34. miscobjs : cylist.obj cyfile.obj stack.obj
  35.  
  36. winobjs : win.obj winaux.obj winmsg.obj askyn.obj cursor.obj
  37.  
  38.  
  39. # eof makefile
  40.