home *** CD-ROM | disk | FTP | other *** search
- # makefile for Class(y) demonstration programs and library source
- #
- # This makefile is designed for use with either the Borland or
- # Zortech MAKE utilities. If you do not have one of these, use
- # the batch file MAKEALL.BAT.
-
- CLIP_SWITCHES = /n/w/a/b
-
- .prg.obj :
- clipper $* $(CLIP_SWITCHES)
-
- wintest.exe : wintest.obj
- rtlink fi wintest lib csysampl, classy
-
- heritest.exe : heritest.obj htbox.obj
- rtlink fi heritest, htbox lib csysampl, classy
-
- testscrn.exe : testscrn.obj scrnrect.obj rectangl.obj
- rtlink fi testscrn, scrnrect, rectangl lib csysampl, classy
-
- testrect.exe : testrect.obj rectangl.obj
- rtlink fi testrect, rectangl lib csysampl, classy
-
- menudemo.exe : menudemo.obj basemenu.obj popupmenu.obj menubar.obj menuitem.obj pulldnmenu.obj
- rtlink fi menudemo.obj, basemenu.obj, popupmenu.obj, menubar.obj, \
- menuitem.obj, pulldnmenu.obj lib csysampl, classy
-
- dictdemo.exe : dictdemo.obj dict.obj assoc.obj
- rtlink fi dictdemo, dict, assoc lib csysampl, classy
-
- dbrowdem.exe : dbrowdem.obj dbrowse.obj
- rtlink fi dbrowdem, dbrowse lib csysampl, classy
-
- miscobjs : cylist.obj cyfile.obj stack.obj
-
- winobjs : win.obj winaux.obj winmsg.obj askyn.obj cursor.obj
-
-
- # eof makefile
-