home *** CD-ROM | disk | FTP | other *** search
- #############################################################################
- #
- # Copyright (C) 1993 SciTech Software
- # All rights reserved.
- #
- # Descripton: Generic makefile definitions include file. Includes the
- # appropriate definition file for the specified compiler.
- # By default Borland C++ 3.1 is assumed.
- #
- # $Id: makedefs.def 1.2 1994/03/09 11:22:00 kjb Exp $
- #
- #############################################################################
-
- !if $d(msc)
- !include "\makedefs\msc.def"
- !elif $d(watcom)
- !include "\makedefs\watcom.def"
- !elif $d(symantec)
- !include "\makedefs\symantec.def"
- !else
- !include "\makedefs\borland.def"
- !endif
-
- # Define where the 'pmode.c' file is located. You will need to change this
- # to reflect where you have installed the pmode library (only necessary if
- # you are re-building the libraries for SciTech Software products that
- # require this library.
-
- PMODE_DIR = c:\bc\src\pmode
-
- # Implicit rules to make the object files for the library...
-
- .c.obj:
- $(CC) $(CC_FLAGS) $(CC_SPECIAL) $(COMPILE_ONLY) {$< }
-
- .cpp.obj:
- $(CC) $(CC_FLAGS) $(CC_SPECIAL) $(COMPILE_ONLY) {$< }
-
- .asm.obj:
- $(ASM) $(ASM_FLAGS) $(ASM_SPECIAL) $<, $&
-
-
-