diff options
author | letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2012-08-23 12:52:47 +0000 |
---|---|---|
committer | letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2012-08-23 12:52:47 +0000 |
commit | 492ad5ad0b4c55610c9896436d2165ac22b527a6 (patch) | |
tree | 87bd525d8baadaa9177fa8f9a7b8e886a17c06a2 /test-suite/Makefile | |
parent | be746c0bbd22d9a4206216a242a6f968b4f9135f (diff) |
No more coqtop.opt, produce directly a coqtop binary
We now always produce two binaries, coqtop and coqtop.byte :
- If ocamlopt is available, coqtop is directly what used to be coqtop.opt,
no more symlinks needed.
- Otherwise, coqtop is a copy of coqtop.byte.
The same for coqchk and coqide...
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15752 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/Makefile')
-rw-r--r-- | test-suite/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile index f3013c04d..acf5600d2 100644 --- a/test-suite/Makefile +++ b/test-suite/Makefile @@ -30,13 +30,8 @@ BIN := ../bin/ LIB := .. -ifeq ($(BEST),byte) - coqtop := $(BIN)coqtop.byte -boot -q -batch -I prerequisite - bincoqc := $(BIN)coqc -coqlib $(LIB) -byte -I prerequisite -else - coqtop := $(BIN)coqtop -boot -q -batch -I prerequisite - bincoqc := $(BIN)coqc -coqlib $(LIB) -I prerequisite -endif +coqtop := $(BIN)coqtop.byte -boot -q -batch -I prerequisite +bincoqc := $(BIN)coqc -coqlib $(LIB) -I prerequisite command := $(coqtop) -top Top -load-vernac-source coqc := $(coqtop) -compile |