68 lines
1.5 KiB
Makefile
68 lines
1.5 KiB
Makefile
# Configuration for Windows NT/95, Visual C++ 4.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
|
|
|
|
########## 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=
|
|
|
|
### 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
|