Skip to content

Commit e601573

Browse files
committed
Update Makefile to also build native library files
1 parent 5a5ccef commit e601573

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ binary:
77
$(OCAMLBUILD) re-nfa-command.native
88

99
lib:
10-
$(OCAMLBUILD) re-nfa.cma re-nfa.cmxa
10+
$(OCAMLBUILD) re-nfa.a re-nfa.cma re-nfa.cmxa
1111

1212
clean:
1313
$(OCAMLBUILD) -clean
@@ -34,7 +34,8 @@ install: lib binary
3434
_build/lib/nfa_dot.cmi \
3535
_build/lib/regex.cmi \
3636
_build/lib/re-nfa.cma \
37-
_build/lib/re-nfa.cmxa
37+
_build/lib/re-nfa.cmxa \
38+
_build/lib/re-nfa.a
3839

3940
uninstall:
4041
$(OCAMLFIND) remove re-nfa

0 commit comments

Comments
 (0)