# 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 classy

heritest.exe : heritest.obj htbox.obj
    rtlink fi heritest, htbox lib classy

testscrn.exe : testscrn.obj scrnrect.obj rectangl.obj
    rtlink fi testscrn, scrnrect, rectangl lib classy

testrect.exe : testrect.obj rectangl.obj
    rtlink fi testrect, rectangl lib classy

testmenu.exe : testmenu.obj basemenu.obj menu.obj menubar.obj menuitem.obj pdmenu.obj
    rtlink fi testmenu.obj, basemenu.obj, menu.obj, menubar.obj, \
            menuitem.obj, pdmenu.obj  lib classy

miscobjs : cylist.obj cyfile.obj stack.obj

winobjs : win.obj winaux.obj winmsg.obj askyn.obj cursor.obj


# eof makefile
