diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1995-11-02 14:09:42 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1995-11-02 14:09:42 +0000 |
commit | 50016eb5d5c860490417447148bdf189c3ba6f6f (patch) | |
tree | e1b968467bc8b1c9cf8c110f4c23e8779e507284 /tools | |
parent | bf74ce3ea54d79954693b7f63d7dadbd59701ab8 (diff) | |
download | ocaml-50016eb5d5c860490417447148bdf189c3ba6f6f.tar.gz |
Renommage des compilateurs de bootstrap
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@389 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 30 | ||||
-rw-r--r-- | tools/csldep.mll (renamed from tools/camldep.mll) | 0 | ||||
-rwxr-xr-x | tools/cslmktop (renamed from tools/camlmktop) | 0 | ||||
-rwxr-xr-x | tools/cslsize (renamed from tools/camlsize) | 0 |
4 files changed, 15 insertions, 15 deletions
diff --git a/tools/Makefile b/tools/Makefile index 838f75d263..786b514cf5 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,34 +1,34 @@ include ../Makefile.config -CAMLRUN=../boot/camlrun -CAMLC=$(CAMLRUN) ../boot/camlc -I ../boot -CAMLLEX=$(CAMLRUN) ../boot/camllex +CAMLRUN=../boot/cslrun +CAMLC=$(CAMLRUN) ../boot/cslc -I ../boot +CAMLLEX=$(CAMLRUN) ../boot/csllex INCLUDES=-I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp COMPFLAGS=$(INCLUDES) LINKFLAGS=$(INCLUDES) -all: camldep cslprof +all: csldep cslprof # The dependency generator -CAMLDEP=camldep.cmo +CAMLDEP=csldep.cmo -camldep: $(CAMLDEP) - $(CAMLC) $(LINKFLAGS) -o camldep misc.cmo $(CAMLDEP) +csldep: $(CAMLDEP) + $(CAMLC) $(LINKFLAGS) -o csldep misc.cmo $(CAMLDEP) clean:: - rm -f camldep + rm -f csldep -camldep.ml: camldep.mll - $(CAMLLEX) camldep.mll +csldep.ml: csldep.mll + $(CAMLLEX) csldep.mll clean:: - rm -f camldep.ml + rm -f csldep.ml install:: - cp camldep $(BINDIR)/csldep + cp csldep $(BINDIR)/csldep -beforedepend:: camldep +beforedepend:: csldep # The profiler @@ -49,7 +49,7 @@ clean:: # To make custom toplevels install:: - cp camlmktop $(BINDIR)/cslmktop + cp cslmktop $(BINDIR)/cslmktop # The bytecode disassembler @@ -105,6 +105,6 @@ clean:: rm -f *.cmo *.cmi depend: beforedepend - $(CAMLRUN) ./camldep $(INCLUDES) *.mli *.ml > .depend + $(CAMLRUN) ./csldep $(INCLUDES) *.mli *.ml > .depend include .depend diff --git a/tools/camldep.mll b/tools/csldep.mll index ed598ea896..ed598ea896 100644 --- a/tools/camldep.mll +++ b/tools/csldep.mll diff --git a/tools/camlmktop b/tools/cslmktop index f11f85ed91..f11f85ed91 100755 --- a/tools/camlmktop +++ b/tools/cslmktop diff --git a/tools/camlsize b/tools/cslsize index 8904d47a2c..8904d47a2c 100755 --- a/tools/camlsize +++ b/tools/cslsize |