aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfilliatr2001-04-24 12:21:06 +0000
committerfilliatr2001-04-24 12:21:06 +0000
commit898094762ca96b5ce16b47e8d748fa0fcf5cc3c2 (patch)
tree6c884ffd06ab8fb77a7aea7a7377dca185211897 /Makefile
parent71cdba7cd8ac9593d46490e62d7f5ff470bddaa3 (diff)
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files 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
###########################################################################