summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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