Skip to content

Commit

Permalink
Fix library installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
samoht committed Nov 12, 2012
1 parent 6e86353 commit 0ffbaba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -77,12 +77,12 @@ uninstall:
rm -f $(prefix)/bin/opam* rm -f $(prefix)/bin/opam*
rm -f $(mandir)/man1/opam* rm -f $(mandir)/man1/opam*


LIB = opam-lib LIB = opam-core
NOMLI = opamGlobals.ml NOMLI = opamGlobals.ml
MLI = $(foreach i, $(shell find src/ -name "*.mli"), $(notdir $i)) MLI = $(foreach i, $(shell find src/core -name "*.mli"), $(notdir $i))
_FILES= $(LIB:%=%.a) $(LIB:%=%.cma) $(LIB:%=%.cmxa)\ _FILES= $(LIB:%=%.a) $(LIB:%=%.cma) $(LIB:%=%.cmxa)\
$(MLI:%.mli=%.cmi) $(MLI:%.mli=%.cmi)
FILES = $(_FILES:%=_obuild/opam-lib/%) $(NOMLI:%.ml=_obuild/opam-lib/%.cmi) FILES = $(_FILES:%=_obuild/opam-core/%) $(NOMLI:%.ml=_obuild/opam-core/%.cmi)


.PHONY: libuninstall libinstall .PHONY: libuninstall libinstall
libinstall: META libinstall: META
Expand Down

0 comments on commit 0ffbaba

Please sign in to comment.