Skip to content
This repository has been archived by the owner on Aug 17, 2022. It is now read-only.

Commit

Permalink
[interpreter] Minor Makefile clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
rossberg committed Oct 27, 2017
1 parent 043aadd commit 621ea96
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions interpreter/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,9 @@ $(ZIP): $(WINMAKE)
git archive --format=zip --prefix=$(NAME)/ -o $@ HEAD
clean:
rm -rf _build/jslib wasm.mlpack _tags
rm -rf _build/jslib $(LIB).mlpack _tags
$(OCB) -clean
# Opam support
.PHONY: check install uninstall
Expand All @@ -150,9 +149,9 @@ check:
ocamlfind query $(LIBS)
install: _build/$(LIB).cmx _build/$(LIB).cmo
ocamlfind install wasm meta/findlib/META _build/wasm.o \
ocamlfind install $(LIB) meta/findlib/META _build/$(LIB).o \
$(wildcard _build/$(LIB).cm*) \
$(wildcard $(DIRS:%=%/*.mli))
uninstall:
ocamlfind remove wasm
ocamlfind remove $(LIB)

0 comments on commit 621ea96

Please sign in to comment.