diff options
| author | Pierre Letouzey | 2016-05-31 00:13:43 +0200 |
|---|---|---|
| committer | Pierre Letouzey | 2016-05-31 09:11:13 +0200 |
| commit | 7d2ad6ac66abb97819ffbc5ad58c862a84e28775 (patch) | |
| tree | d9d8c90e38d036235f92f8ef8f7c2fea1075747e | |
| parent | 991188b16cc963ea4f8e49075c90eb312c6fe143 (diff) | |
Checker: no more -I kernel via a few symlinks (for Names and Esubst)
In particular, no more warning about ocamldep finding stuff both
in checker/ and kernel/.
A 'make clean' is mandatory after this commit
| -rw-r--r-- | Makefile.common | 4 | ||||
| l--------- | checker/esubst.ml | 1 | ||||
| l--------- | checker/esubst.mli | 1 | ||||
| l--------- | checker/names.ml | 1 | ||||
| l--------- | checker/names.mli | 1 |
5 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.common b/Makefile.common index 3e2bfcb3aa..e7d0928765 100644 --- a/Makefile.common +++ b/Makefile.common @@ -78,9 +78,7 @@ SRCDIRS:=\ IDESRCDIRS:= $(CORESRCDIRS) ide ide/utils -# Order is relevant here because kernel and checker contain files -# with the same name -CHKSRCDIRS:= checker lib config kernel parsing +CHKSRCDIRS:= config lib checker ########################################################################### # Tools diff --git a/checker/esubst.ml b/checker/esubst.ml new file mode 120000 index 0000000000..b82bd24f1e --- /dev/null +++ b/checker/esubst.ml @@ -0,0 +1 @@ +../kernel/esubst.ml
\ No newline at end of file diff --git a/checker/esubst.mli b/checker/esubst.mli new file mode 120000 index 0000000000..e30eaae5d3 --- /dev/null +++ b/checker/esubst.mli @@ -0,0 +1 @@ +../kernel/esubst.mli
\ No newline at end of file diff --git a/checker/names.ml b/checker/names.ml new file mode 120000 index 0000000000..f0bf2f83f6 --- /dev/null +++ b/checker/names.ml @@ -0,0 +1 @@ +../kernel/names.ml
\ No newline at end of file diff --git a/checker/names.mli b/checker/names.mli new file mode 120000 index 0000000000..10459f3b29 --- /dev/null +++ b/checker/names.mli @@ -0,0 +1 @@ +../kernel/names.mli
\ No newline at end of file |
