#
# These are the site dependant options and should be changed to fit your needs
#

# TOPDIR is the top of the CUTCP distribution tree
TOPDIR		= C:\work\cutcp		# Where did you unzip CUTCP? 
SRCDIR		= $(TOPDIR)\src
BINDIR		= $(TOPDIR)\bin
INCDIR		= $(SRCDIR)\include
LIBDIR		= $(SRCDIR)\lib
3270LIBDIR	= $(LIBDIR)\tn3270

# BCCDIR is the top of the BCC tree
BCCDIR		= c:\borlandc		# Where did you install BCC?
BCCLIBS		= $(BCCDIR)\lib
BCCINCLUDES	= $(BCCDIR)\include


# These are the generic definitions for compilers, flags, include dirs, etc..
CC		= bcc
CCOPTFILE	= $(SRCDIR)\bccopts.cfg
CCOPTS		= +$(CCOPTFILE)
DEFINES		= -DREL="-Rutgers-1.0" -DNEWKEY -DNCSA -DMSDOS -Dlint
3270FLAGS	= -DTN3270
INCLUDES	= -I$(INCDIR) -I$(BCCINCLUDES)
CFLAGS		= -r -Qe -P- -d -Z -ml -c -w-
ASM		= tasm
AFLAGS		= -mx -zn -i$(INCDIR) -t -w- -DTURBOC -DNEWKEY
LIB		= tlib
LIBFLAGS	= +-
LINK		= tlink


