diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2017-11-24 13:46:00 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2017-11-27 10:53:30 +0100 |
commit | 098ac444e731d7674d8910264ae58fb876618a5a (patch) | |
tree | 8f4c9ab6ddcbed53f1ad2d993db98b688c41396a /Makefile | |
parent | a6b5a6bdd138a5ccc6827bcc73580df1e9218820 (diff) |
Move function in their own modules
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ OCAMLBUILD ?= ocamlbuild
-PACKAGES=dynlink,curses,camlzip,ezxmlm,text,str,menhirLib,zarith
+PACKAGES=dynlink,curses,camlzip,ezxmlm,text,str,menhirLib,zarith,base
PATHS=src,src/odf
MENHIR=-use-menhir
@@ -18,7 +18,7 @@ stub: $(MAKE) -C stub LIB=$(LIB)
deps:
- opam install ocamlbuild curses camlzip ezxmlm ounit text menhir zarith
+ opam install ocamlbuild curses camlzip ezxmlm ounit text menhir zarith base
byte: stub
$(OCAMLBUILD) -pkgs $(PACKAGES) $(STUB_OPTIONS) $(MENHIR) -Is $(PATHS) main.byte
|