oublis varies
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4975 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02master
parent
d0997ce9c9
commit
c4a575d653
|
@ -225,6 +225,7 @@ installbyt:
|
||||||
cp toplevel/toploop.cmi toplevel/topdirs.cmi toplevel/topmain.cmi $(LIBDIR)
|
cp toplevel/toploop.cmi toplevel/topdirs.cmi toplevel/topmain.cmi $(LIBDIR)
|
||||||
cd tools ; $(MAKEREC) install
|
cd tools ; $(MAKEREC) install
|
||||||
cd ocamldoc ; $(MAKEREC) install
|
cd ocamldoc ; $(MAKEREC) install
|
||||||
|
mkdir -p $(STUBLIBDIR)
|
||||||
for i in $(OTHERLIBRARIES); do $(MAKEREC) -C otherlibs/$$i install; done
|
for i in $(OTHERLIBRARIES); do $(MAKEREC) -C otherlibs/$$i install; done
|
||||||
ifeq ($(TOOLCHAIN),msvc)
|
ifeq ($(TOOLCHAIN),msvc)
|
||||||
cd win32caml ; $(MAKE) install
|
cd win32caml ; $(MAKE) install
|
||||||
|
|
|
@ -113,7 +113,7 @@ BIGNUM_ARCH=C
|
||||||
# Set TK_ROOT to the directory where you installed TCL/TK 8.3
|
# Set TK_ROOT to the directory where you installed TCL/TK 8.3
|
||||||
TK_ROOT=c:/tcl
|
TK_ROOT=c:/tcl
|
||||||
TK_DEFS=-I$(TK_ROOT)/include
|
TK_DEFS=-I$(TK_ROOT)/include
|
||||||
TK_LINK=tk83.lib tcl83.lib
|
TK_LINK=/link /libpath:$(TK_ROOT)/lib tk83.lib tcl83.lib
|
||||||
|
|
||||||
############# Aliases for common commands
|
############# Aliases for common commands
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ TKLINKOPT=$(STATIC)
|
||||||
|
|
||||||
CAMLRUN=$(EXEDIR)/boot/ocamlrun
|
CAMLRUN=$(EXEDIR)/boot/ocamlrun
|
||||||
CAMLC=$(CAMLRUN) $(TOPDIR)/ocamlc -I $(TOPDIR)/stdlib
|
CAMLC=$(CAMLRUN) $(TOPDIR)/ocamlc -I $(TOPDIR)/stdlib
|
||||||
CAMLCOMP=$(CAMLC) -labels -c
|
CAMLCOMP=$(CAMLC) -c
|
||||||
CAMLYACC=$(EXEDIR)/boot/ocamlyacc -v
|
CAMLYACC=$(EXEDIR)/boot/ocamlyacc -v
|
||||||
CAMLLEX=$(CAMLRUN) $(TOPDIR)/boot/ocamllex
|
CAMLLEX=$(CAMLRUN) $(TOPDIR)/boot/ocamllex
|
||||||
CAMLLIBR=$(CAMLC) -a
|
CAMLLIBR=$(CAMLC) -a
|
||||||
|
@ -25,5 +25,5 @@ CAMLDEP=$(CAMLRUN) $(TOPDIR)/tools/ocamldep
|
||||||
COMPFLAGS=
|
COMPFLAGS=
|
||||||
LINKFLAGS=
|
LINKFLAGS=
|
||||||
|
|
||||||
CAMLOPT=$(CAMLRUN) $(TOPDIR)/ocamlopt -I $(TOPDIR)/stdlib -labels
|
CAMLOPT=$(CAMLRUN) $(TOPDIR)/ocamlopt -I $(TOPDIR)/stdlib
|
||||||
CAMLOPTLIBR=$(CAMLOPT) -a
|
CAMLOPTLIBR=$(CAMLOPT) -a
|
||||||
|
|
|
@ -35,7 +35,7 @@ PUB=fileevent.cmi fileevent.mli \
|
||||||
install:
|
install:
|
||||||
mkdir -p $(INSTALLDIR)
|
mkdir -p $(INSTALLDIR)
|
||||||
cp $(PUB) $(INSTALLDIR)
|
cp $(PUB) $(INSTALLDIR)
|
||||||
cp dll$(LIBNAME).dll $(STUBLIBDIR)/stublibs/dll$(LIBNAME).dll
|
cp dll$(LIBNAME).dll $(STUBLIBDIR)/dll$(LIBNAME).dll
|
||||||
cp dll$(LIBNAME).$(A) lib$(LIBNAME).$(A) $(INSTALLDIR)
|
cp dll$(LIBNAME).$(A) lib$(LIBNAME).$(A) $(INSTALLDIR)
|
||||||
|
|
||||||
clean :
|
clean :
|
||||||
|
|
Loading…
Reference in New Issue