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

# TOPDIR is the top of the NCSATCP distribution tree
TOPDIR		= a:\src\tcp\ncsatcp		# Where did you unzip NCSATCP? 
SRCDIR		= $(TOPDIR)\src
BINDIR		= c:\_bin
LIBDIR		= $(TOPDIR)\lib
INCDIR		= $(TOPDIR)\include

NCSATCPLIB	= $(LIBDIR)\ncsatcp.lib

# BCCDIR is the top of the BCC tree
BCCDIR		= a:\app\bcc		# 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	= $(TOPDIR)\bccopts.cfg
CCOPTS		= +$(CCOPTFILE)
DEFINES		= -DVERSION="2.5" -DNEWKEY -DNCSA -DMSDOS -Dlint
INCLUDES	= -I$(INCDIR) -I$(BCCINCLUDES)
CFLAGS		= -r -Qe -P- -d -Z -ml -c -w-
ASM		= tasm
AFLAGS		= /mx /i$(INCDIR) /t /w- /DTURBOC /DNEWKEY
LIB		= tlib
LIBFLAGS	= +-

