home *** CD-ROM | disk | FTP | other *** search
- #############################################################################
- #
- # Copyright (C) 1993 SciTech Software
- # All rights reserved.
- #
- # Descripton: Makefile definitions for compiling SciTech Software products.
- # Borland C++ 3.1 version.
- #
- # $Id: borland.def 1.1 1994/03/06 07:48:03 kjb Exp $
- #
- #############################################################################
-
- # The following will need to be changed to reflect your normal include file
- # and library directories.
-
- INC_DEST = \bc\include\myinc # Destination for include files
- LIB_DEST = \bc\lib\mylib # Destination for library files
-
- CC = bcc # Name of C compiler
- ASM = tasm # Name of assembler
- LIB = tlib # Name of librarian
- LIB_FLAGS = /C
-
- !if $d(debug)
- CC_DOPT = -v # Turn on debugging for C compiler
- ASM_DOPT = /ZI # Turn on debugging for assembler
- !endif
-
- # Only compile for the large model
-
- LIBFILE = $(LIB_DEST)\$(LIBNAME).lib
- ASM_FLAGS = /MX /m $(ASM_DOPT) /D__LARGE__
- CC_FLAGS = -ml $(CC_DOPT)
- COMPILE_ONLY = -c
-
- # Turn on autodependency checking
-
- .AUTODEPEND
-
-
-