diff options
| author | Gaëtan Gilbert | 2018-10-17 15:04:12 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2018-10-29 13:10:38 +0100 |
| commit | 98a792b79c4bea810bc4fe623c9006e8eeaeb468 (patch) | |
| tree | 09ff403dfee4aa9e7f8e54b796dd155735ff895c | |
| parent | 60b7d3662880666a22e0b90f55b49361c453e3f4 (diff) | |
Rename checker/{main->coqchk}
| -rw-r--r-- | Makefile.checker | 4 | ||||
| -rw-r--r-- | checker/coqchk.ml (renamed from checker/main.ml) | 0 | ||||
| -rw-r--r-- | checker/coqchk.mli (renamed from checker/main.mli) | 0 | ||||
| -rw-r--r-- | checker/dune | 6 |
4 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.checker b/Makefile.checker index e6b1541efa..3d1d251701 100644 --- a/Makefile.checker +++ b/Makefile.checker @@ -49,7 +49,7 @@ checker/names.ml: kernel/names.ml sed -i.bak '1i(* AUTOGENERATED FILE: DO NOT EDIT *)\n\n\n\n\n\n\n\n' $@ && rm $@.bak ifeq ($(BEST),opt) -$(CHICKEN): config/config.cmxa checker/check.cmxa checker/main.mli checker/main.ml +$(CHICKEN): config/config.cmxa checker/check.cmxa checker/coqchk.mli checker/coqchk.ml $(SHOW)'OCAMLOPT -o $@' $(HIDE)$(OCAMLOPT) -linkpkg $(SYSMOD) $(CHKLIBS) $(OPTFLAGS) $(LINKMETADATA) -o $@ $^ $(STRIP_HIDE) $@ @@ -59,7 +59,7 @@ $(CHICKEN): $(CHICKENBYTE) cp $< $@ endif -$(CHICKENBYTE): config/config.cma checker/check.cma checker/main.mli checker/main.ml +$(CHICKENBYTE): config/config.cma checker/check.cma checker/coqchk.mli checker/coqchk.ml $(SHOW)'OCAMLC -o $@' $(HIDE)$(OCAMLC) -linkpkg $(SYSMOD) $(CHKLIBS) $(BYTEFLAGS) $(CUSTOM) -o $@ $^ diff --git a/checker/main.ml b/checker/coqchk.ml index 83b4ddd2d5..83b4ddd2d5 100644 --- a/checker/main.ml +++ b/checker/coqchk.ml diff --git a/checker/main.mli b/checker/coqchk.mli index 9db9ecd12e..9db9ecd12e 100644 --- a/checker/main.mli +++ b/checker/coqchk.mli diff --git a/checker/dune b/checker/dune index ebb3dd7583..5aff9211d7 100644 --- a/checker/dune +++ b/checker/dune @@ -11,16 +11,16 @@ (name checklib) (public_name coq.checklib) (synopsis "Coq's Standalone Proof Checker") - (modules :standard \ main votour) + (modules :standard \ coqchk votour) (modules_without_implementation cic) (wrapped true) (libraries coq.lib)) (executable - (name main) + (name coqchk) (public_name coqchk) (package coq) - (modules main) + (modules coqchk) (flags :standard -open Checklib) (libraries coq.checklib)) |
