File: Makefile.config.nt

package info (click to toggle)
ocamltk 41.2.02-2
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 1,352 kB
  • ctags: 2,247
  • sloc: ansic: 4,792; ml: 4,332; makefile: 688; sh: 116
file content (24 lines) | stat: -rw-r--r-- 541 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
## Where you want to install CamlTk41 libraries and binaries
INSTALLDIR=$(LIBDIR)\ocamltk41

### Location of the Tcl/Tk installation
TCLTK=C:\tcl

### What to use to compile and link with Tk
TCLTKINCLUDES=-ccopt -I$(TCLTK)\include
TKLIBS="$(TCLTK)\lib\tcl76.lib $(TCLTK)\lib\tk42.lib"

## Tools from the Objective Caml distribution
CAMLC=ocamlc
CAMLCOMP=$(CAMLC) -c
CAMLYACC=ocamlyacc -v
CAMLLEX=ocamllex
CAMLLIBR=$(CAMLC) -a
CAMLDEP=ocamldep
COMPFLAGS=
LINKFLAGS=

CAMLOPT=ocamlopt
CAMLOPTLIBR=$(CAMLOPT) -a

## End of configuration section