29 lines
725 B
Makefile
29 lines
725 B
Makefile
## Paths are relative to subdirectories
|
|
## Where you compiled Objective Caml
|
|
TOPDIR=../../..
|
|
TOPDIRNT=..\..\..
|
|
## Where to find OCaml binaries
|
|
EXEDIR=$(TOPDIRNT)
|
|
## Path to the otherlibs subdirectory
|
|
OTHERS=../..
|
|
|
|
!include $(TOPDIRNT)\config\Makefile.nt
|
|
|
|
LABLTKDIR=$(LIBDIR)\labltk
|
|
TKLINKOPT=$(STATIC)
|
|
|
|
## Tools from the Objective Caml distribution
|
|
|
|
CAMLRUN=$(EXEDIR)\boot\ocamlrun
|
|
LABLC=$(CAMLRUN) $(TOPDIR)/ocamlc -I $(TOPDIR)/stdlib
|
|
LABLCOMP=$(LABLC) -labels -c
|
|
LABLYACC=$(EXEDIR)\boot\ocamlyacc -v
|
|
LABLLEX=$(CAMLRUN) $(TOPDIR)/boot/ocamllex
|
|
LABLLIBR=$(LABLC) -a
|
|
LABLDEP=$(CAMLRUN) $(TOPDIR)/tools/ocamldep
|
|
COMPFLAGS=
|
|
LINKFLAGS=
|
|
|
|
CAMLOPT=$(CAMLRUN) $(TOPDIR)/ocamlopt -I $(TOPDIR)/stdlib -labels
|
|
CAMLOPTLIBR=$(CAMLOPT) -a
|