summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2001-11-06 13:20:53 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2001-11-06 13:20:53 +0000
commit7ad734d35af8ec2924b858142b97992f91e50755 (patch)
tree5854b36b2e18b3a6d04d2c1e1da45f0bd780ff88
parent5e15b3a087561ab775035511b606992374dfd421 (diff)
Ajout toplevel GUI
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3990 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--Makefile.nt11
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.nt b/Makefile.nt
index fcdae9319..183e37c67 100644
--- a/Makefile.nt
+++ b/Makefile.nt
@@ -109,7 +109,7 @@ PERVASIVES=arg array buffer callback char digest filename format gc hashtbl \
arrayLabels listLabels stringLabels stdLabels
# Recompile the system using the bootstrap compiler
-all: runtime ocamlc ocamllex ocamlyacc ocamltools library ocaml otherlibraries camlp4out
+all: runtime ocamlc ocamllex ocamlyacc ocamltools library ocaml otherlibraries camlp4out win32gui
# The compilation of ocaml will fail if the runtime has changed.
# Never mind, just do make bootstrap to reach fixpoint again.
@@ -226,7 +226,7 @@ installbyt:
cp toplevel\topdirs.cmi $(LIBDIR)\topdirs.cmi
cd tools & $(MAKEREC) install
for %i in ($(OTHERLIBRARIES)) do (cd otherlibs\%i & $(MAKEREC) install & cd ..\..)
- if exist wingui cd wingui & $(MAKE) -nologo install
+ cd win32caml & $(MAKE) -nologo install
copy /a README $(DISTRIB)\Readme.gen
copy /a README.win32 $(DISTRIB)\Readme.win
copy /a LICENSE $(DISTRIB)\License.txt
@@ -531,6 +531,13 @@ camlp4opt:
partialclean::
cd camlp4 & make clean
+# The Win32 toplevel GUI
+
+win32gui:
+ cd win32caml & $(MAKE) all
+clean::
+ cd win32caml & $(MAKE) clean
+
# Default rules
.SUFFIXES: .ml .mli .cmo .cmi .cmx