1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
################### C compiler ########################
# C compiler to use
CC=cl /nologo
# Flags for $(CC)
CFLAGS=/Ox /MT /Zi
################### Java compiler #####################
# Java compiler to use
JAVAC=javac -g
################### JNI interface #####################
## Defaults are set for Sun's JDK 1.4.1 under Windows
# Home location for the JDK. Only used for setting other variables below.
JDKHOME=C:/j2sdk1.4.1
# Where to find the JNI include files (for compiling the OCaml-JNI C stubs)
JNIINCLUDES=-I$(JDKHOME)/include -I$(JDKHOME)/include/win32
# The library to link with to get the JNI
JNILIBS=$(JDKHOME)/lib/jvm.lib
# Additional link-time options to pass to $(CC) when linking with $(JNILIBS)
JNILIBOPTS=
# Additional options when compiling the OCaml-JNI C stubs.
JNISTUBSOPTIONS=
|