home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / grafik / mgl11 / mkdefs10 / borland.def next >
Encoding:
Text File  |  1994-03-10  |  1.3 KB  |  41 lines

  1. #############################################################################
  2. #
  3. #                   Copyright (C) 1993 SciTech Software
  4. #                           All rights reserved.
  5. #
  6. # Descripton:   Makefile definitions for compiling SciTech Software products.
  7. #               Borland C++ 3.1 version.
  8. #
  9. # $Id: borland.def 1.1 1994/03/06 07:48:03 kjb Exp $
  10. #
  11. #############################################################################
  12.  
  13. # The following will need to be changed to reflect your normal include file
  14. # and library directories.
  15.  
  16. INC_DEST        = \bc\include\myinc # Destination for include files
  17. LIB_DEST        = \bc\lib\mylib     # Destination for library files
  18.  
  19. CC              = bcc               # Name of C compiler
  20. ASM             = tasm              # Name of assembler
  21. LIB             = tlib              # Name of librarian
  22. LIB_FLAGS       = /C
  23.  
  24. !if $d(debug)
  25. CC_DOPT         = -v                # Turn on debugging for C compiler
  26. ASM_DOPT        = /ZI               # Turn on debugging for assembler
  27. !endif
  28.  
  29. # Only compile for the large model
  30.  
  31. LIBFILE         = $(LIB_DEST)\$(LIBNAME).lib
  32. ASM_FLAGS       = /MX /m $(ASM_DOPT) /D__LARGE__
  33. CC_FLAGS        = -ml $(CC_DOPT)
  34. COMPILE_ONLY    = -c
  35.  
  36. # Turn on autodependency checking
  37.  
  38. .AUTODEPEND
  39.  
  40.  
  41.