aboutsummaryrefslogtreecommitdiff
path: root/Makefile.build
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2016-06-01 17:06:25 +0200
committerEmilio Jesus Gallego Arias2016-06-02 16:45:39 +0200
commit318fc2c04df1e73cc8a178d4fc1ce8bf5543649b (patch)
tree440fb8e51d1fe118d866d0c620a86724e3c6eae8 /Makefile.build
parentffd89ea323937b7d323e24a2b6d53cdc857117dd (diff)
Move ide serialization libraries from lib/ to ide/
This makes the core free from particular protocol choices. It should help with the ppx serialization project and shrinks clib.cma a bit.
Diffstat (limited to 'Makefile.build')
-rw-r--r--Makefile.build7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.build b/Makefile.build
index 10926daa1c..4fac65df75 100644
--- a/Makefile.build
+++ b/Makefile.build
@@ -729,7 +729,12 @@ $(COQWORKMGR): $(addsuffix $(BESTOBJ), stm/coqworkmgrApi tools/coqworkmgr) \
# fake_ide : for debugging or test-suite purpose, a fake ide simulating
# a connection to coqtop -ideslave
-$(FAKEIDE): lib/clib$(BESTLIB) lib/xml_lexer$(BESTOBJ) lib/xml_parser$(BESTOBJ) lib/xml_printer$(BESTOBJ) lib/errors$(BESTOBJ) lib/spawn$(BESTOBJ) ide/document$(BESTOBJ) ide/xmlprotocol$(BESTOBJ) tools/fake_ide$(BESTOBJ) | $(IDETOPLOOPCMA:.cma=$(BESTDYN))
+$(FAKEIDE): lib/clib$(BESTLIB) lib/errors$(BESTOBJ) \
+ lib/spawn$(BESTOBJ) ide/document$(BESTOBJ) \
+ ide/serialize$(BESTOBJ) ide/xml_lexer$(BESTOBJ) \
+ ide/xml_parser$(BESTOBJ) ide/xml_printer$(BESTOBJ) \
+ ide/xmlprotocol$(BESTOBJ) tools/fake_ide$(BESTOBJ) | \
+ $(IDETOPLOOPCMA:.cma=$(BESTDYN))
$(SHOW)'OCAMLBEST -o $@'
$(HIDE)$(call bestocaml,-I ide,str unix threads)