Blame config/Makefile.msvc

Packit bd2e5d
# Configuration for Windows, Visual C++ compiler
Packit bd2e5d
include C:/ocamlms/lib/ocaml/Makefile.config
Packit bd2e5d
INSTALLDIR=$(LIBDIR)/labltk
Packit bd2e5d
INSTALLBINDIR=$(BINDIR)
Packit bd2e5d
TK_ROOT=c:/tcl
Packit bd2e5d
TK_DEFS=-I$(TK_ROOT)/include
Packit bd2e5d
# The following definition avoids hard-wiring $(TK_ROOT) in the libraries
Packit bd2e5d
# produced by OCaml, and is therefore required for binary distribution
Packit bd2e5d
# of these libraries.  However, $(TK_ROOT)/lib must be added to the LIB
Packit bd2e5d
# environment variable, as described in README.win32.
Packit bd2e5d
TK_LINK=tk85.lib tcl85.lib ws2_32.lib
Packit bd2e5d
# An alternative definition that avoids mucking with the LIB variable,
Packit bd2e5d
# but hard-wires the Tcl/Tk location in the binaries
Packit bd2e5d
# TK_LINK=$(TK_ROOT)/tk85.lib $(TK_ROOT)/tcl85.lib ws2_32.lib