85 lines
2.4 KiB
Makefile
85 lines
2.4 KiB
Makefile
#########################################################################
|
|
# #
|
|
# Objective Caml #
|
|
# #
|
|
# Xavier Leroy, projet Cristal, INRIA Rocquencourt #
|
|
# #
|
|
# Copyright 1999 Institut National de Recherche en Informatique et #
|
|
# en Automatique. All rights reserved. This file is distributed #
|
|
# under the terms of the GNU Library General Public License. #
|
|
# #
|
|
#########################################################################
|
|
|
|
# $Id$
|
|
|
|
# Configuration for Windows NT/95, Visual C++ 6.0
|
|
|
|
######### General configuration
|
|
|
|
### Where to install the binaries
|
|
BINDIR=c:\ocaml\bin
|
|
|
|
### Where to install the standard library
|
|
LIBDIR=c:\ocaml\lib
|
|
|
|
### Where to install the info files
|
|
DISTRIB=c:\ocaml
|
|
|
|
### Location of VC++ include files
|
|
SYSTEM_INCLUDES=c:\msdev\VC98\include
|
|
|
|
########## Configuration for the bytecode compiler
|
|
|
|
### Which C compiler to use for the bytecode interpreter.
|
|
BYTECC=cl /nologo
|
|
|
|
### Additional compile-time options for $(BYTECC).
|
|
BYTECCCOMPOPTS=/Ox /MT
|
|
|
|
### Additional link-time options for $(BYTECC)
|
|
BYTECCLINKOPTS=/MT
|
|
|
|
### Libraries needed
|
|
CCLIBS=wsock32.lib
|
|
|
|
### How to invoke the C preprocessor
|
|
CPP=cl /nologo /EP
|
|
|
|
### How to invoke the librarian
|
|
MKLIB=lib /nologo /debugtype:CV /out:
|
|
|
|
############# Configuration for the native-code compiler
|
|
|
|
### Name of architecture for the native-code compiler
|
|
ARCH=i386
|
|
|
|
### Name of architecture model for the native-code compiler.
|
|
MODEL=default
|
|
|
|
### Name of operating system family for the native-code compiler.
|
|
SYSTEM=win32
|
|
|
|
### Which C compiler to use for the native-code compiler.
|
|
NATIVECC=cl /nologo
|
|
|
|
### Additional compile-time options for $(NATIVECC).
|
|
NATIVECCCOMPOPTS=/Ox /MT
|
|
|
|
### Additional link-time options for $(NATIVECC)
|
|
NATIVECCLINKOPTS=/MT
|
|
|
|
### Flags for the assembler
|
|
AS=ml /nologo
|
|
AFLAGS=/coff /Cp
|
|
|
|
############# Configuration for the contributed libraries
|
|
|
|
OTHERLIBRARIES=win32unix systhreads str num graph dynlink
|
|
|
|
### Name of the target architecture for the "num" library
|
|
BIGNUM_ARCH=C
|
|
|
|
############# Aliases for common commands
|
|
|
|
MAKEREC=$(MAKE) -nologo -f Makefile.nt
|