
# Note change the two defines for the location of your borland C++ compiler

### Borland directory information
BLIB=f:\borlandc\lib\\
BINC=f:\borlandc\include

### Compiler information
COMPILER=bcc                           ### Which compiler to use.
LINKER=tlink                           ### Which linker to use.


### Program information. 
MODEL=s                                 ### Model CHANGE WITH CAUTION!!! 

# ----- Make options -----
.SWAP

# ----- DOS OPTIONS -----
# ----- Libraries to link.
STARTUP_OBJS=f:\borlandc\lib\c0$(MODEL)
LIBRARIES=$(BLIB)emu+$(BLIB)math$(MODEL)+$(BLIB)c$(MODEL)
# ----- Compile options-----
COPTS=-O -Z -V -w -m$(MODEL)
LOPTS=/c /x
RC=@rem


### ----- How to make the .EXE file.
demo.exe: demo.obj flexlist.obj 
	$(LINKER) $(LOPTS) @&&!
$(STARTUP_OBJS)+
demo+flexlist
$*

$(LIBRARIES)
$(DEF)
!
	$(RC)

### ----- How to make dependant files.
.cpp.obj:
	$(COMPILER) $(COPTS) -I$(BINC) -c $*


