summaryrefslogtreecommitdiff
path: root/src/lem_interp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/lem_interp/Makefile')
-rw-r--r--src/lem_interp/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lem_interp/Makefile b/src/lem_interp/Makefile
index 96c8eb8b..5043a330 100644
--- a/src/lem_interp/Makefile
+++ b/src/lem_interp/Makefile
@@ -3,13 +3,13 @@
LEMDIR=$(abspath ../../../lem)
OCAMLPATH:=$(LEMDIR)/ocaml-lib:$(OCAMLPATH)
-all: interp.native
+all: interp.cma interp.cmxa
-ast.ml interp.ml: ast.lem interp.lem
+interp_ast.ml interp.ml: interp_ast.lem interp.lem
$(LEMDIR)/lem -ocaml $^
-interp.native: ast.ml interp.ml
- OCAMLPATH=$(OCAMLPATH) ocamlbuild -use-ocamlfind -pkg lem interp.native
+interp.cma interp.cmxa: interp_ast.ml interp.ml
+ OCAMLPATH=$(OCAMLPATH) ocamlbuild -use-ocamlfind -pkg lem $@
clean:
-ocamlbuild -clean