From 898094762ca96b5ce16b47e8d748fa0fcf5cc3c2 Mon Sep 17 00:00:00 2001 From: filliatr Date: Tue, 24 Apr 2001 12:21:06 +0000 Subject: suffixes $(EXE) pour bin/parser; quelques binaires oubliƩs dans make clean git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1681 85f007b7-540e-0410-9357-904b9bb8a0f7 --- Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 2dcf8cca96..735b24f885 100644 --- a/Makefile +++ b/Makefile @@ -217,7 +217,7 @@ COQTOPBYTE=bin/coqtop.byte$(EXE) COQTOPOPT=bin/coqtop.opt$(EXE) BESTCOQTOP=bin/coqtop.$(BEST)$(EXE) COQTOP=bin/coqtop$(EXE) -COQINTERFACE=bin/coq-interface$(EXE) bin/parser +COQINTERFACE=bin/coq-interface$(EXE) bin/parser$(EXE) COQBINARIES= $(COQMKTOP) $(COQC) $(COQTOPBYTE) $(BESTCOQTOP) $(COQTOP) \ $(COQINTERFACE) @@ -268,6 +268,7 @@ clean:: archclean:: rm -f $(COQTOPBYTE) $(COQTOPOPT) $(BESTCOQTOP) $(COQC) $(COQMKTOP) + rm -f $(COQTOP) # we provide targets for each subdirectory @@ -282,16 +283,17 @@ toplevel: $(TOPLEVEL) # special binaries for debugging -bin/coq-interface: $(COQMKTOP) $(CMO) $(USERTACCMO) $(INTERFACE) +bin/coq-interface$(EXE): $(COQMKTOP) $(CMO) $(USERTACCMO) $(INTERFACE) $(COQMKTOP) -top $(INCLUDES) $(CAMLDEBUG) -o $@ $(INTERFACE) -bin/parser: contrib/interface/parse.cmo contrib/interface/line_parser.cmo $(PARSERREQUIRES) contrib/interface/xlate.cmo contrib/interface/vtp.cmo +bin/parser$(EXE): contrib/interface/parse.cmo contrib/interface/line_parser.cmo $(PARSERREQUIRES) contrib/interface/xlate.cmo contrib/interface/vtp.cmo $(OCAMLC) -cclib -lunix -custom $(INCLUDES) -o $@ $(CMA) \ $(PARSERREQUIRES) \ line_parser.cmo vtp.cmo xlate.cmo parse.cmo clean:: - rm -f bin/parser bin/coq-interface + rm -f bin/parser$(EXE) bin/coq-interface$(EXE) + ########################################################################### # tests ########################################################################### -- cgit v1.2.3