From 412ab26e0026dcae80a935473c8439dd211dd109 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Fri, 12 Feb 1999 16:29:36 +0000 Subject: [PATCH] Nouveau ocamllex git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2281 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02 --- tools/Makefile.nt | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/tools/Makefile.nt b/tools/Makefile.nt index 1a06b2d75..25b774eae 100644 --- a/tools/Makefile.nt +++ b/tools/Makefile.nt @@ -13,19 +13,16 @@ all: ocamldep ocamlprof ocamlcp.exe ocamlmktop.exe # The dependency generator CAMLDEP=ocamldep.cmo +CAMLDEP_IMPORTS=misc.cmo config.cmo clflags.cmo terminfo.cmo \ + linenum.cmo warnings.cmo location.cmo longident.cmo pstream.cmo \ + syntaxerr.cmo parser.cmo lexer.cmo parse.cmo ocamldep: $(CAMLDEP) - $(CAMLC) $(LINKFLAGS) -o ocamldep misc.cmo $(CAMLDEP) + $(CAMLC) $(LINKFLAGS) -o ocamldep $(CAMLDEP_IMPORTS) $(CAMLDEP) clean:: rm -f ocamldep -ocamldep.ml: ocamldep.mll - $(CAMLLEX) ocamldep.mll - -clean:: - rm -f ocamldep.ml - install:: cp ocamldep $(BINDIR)\ocamldep.exe