diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2018-04-20 20:27:29 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2018-04-20 20:27:29 +0200 |
commit | 725a98ea6133fe7741ac1ada32d53f7978bfede0 (patch) | |
tree | 9dcced0b39b7779ea677eef193c87e9e2dcf9899 /Makefile | |
parent | 83a783f652dff960a0c6e15f94f1fc496813d998 (diff) |
Update dependencies
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,7 @@ PREFIX=/usr/local
BINDIR=$(PREFIX)/bin
-PACKAGES=dynlink,curses,camlzip,xmlm,text,str,menhirLib,zarith,base
+OCAMLBUILD ?= ocamlbuild
+PACKAGES=dynlink,curses,camlzip,xmlm,text,str,menhirLib,zarith,base,string_dict
PATHS=src,src/odf,src/tree,src/expressions
TARGET=licht
OCB=ocamlbuild -pkgs $(PACKAGES) $(STUB_OPTIONS) $(MENHIR) -Is $(PATHS)
@@ -21,7 +22,7 @@ stub: $(MAKE) -C stub LIB=$(LIB)
deps:
- opam install ocamlfind ocamlbuild curses camlzip xmlm ounit text menhir zarith base
+ opam install ocamlbuild curses camlzip xmlm ounit text menhir zarith string_dict
byte: stub
$(OCB) main.byte
|