#   MAKEFILE for TEXTWIN.EXE and SCRLWIN.EXE
#
#   Works with Borland C++ 3.1

.autodepend

OPTIONS = -v- -WE -H

.cpp.obj:
    bcc -c $(OPTIONS) {$* }

all: textwin.exe scrlwin.exe

textwin.exe: textwin.obj textmain.obj
    bcc $(OPTIONS) textwin.obj textmain.obj

scrlwin.exe: scrlwin.obj textwin.obj scrlmain.obj
    bcc $(OPTIONS) scrlwin.obj textwin.obj scrlmain.obj
