X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=blobdiff_plain;f=mlvirsh%2FMakefile;fp=mlvirsh%2FMakefile;h=0000000000000000000000000000000000000000;hp=5160fde30274ed3c8f43229350f339aa18d75a89;hb=1a7eb475229918cb43f2962316a029273578daab;hpb=b8b8754dbd12d118ad359e324994802d878958b1 diff --git a/mlvirsh/Makefile b/mlvirsh/Makefile deleted file mode 100644 index 5160fde..0000000 --- a/mlvirsh/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# $Id: Makefile.in,v 1.2 2007/08/21 14:24:38 rjones Exp $ - -INSTALL := /usr/bin/install -c - -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin - -OCAMLCPACKAGES := -package extlib,unix -I ../libvirt -OCAMLCFLAGS := -g -OCAMLCLIBS := -linkpkg - -OCAMLOPTPACKAGES := $(OCAMLCPACKAGES) -OCAMLOPTFLAGS := -OCAMLOPTLIBS := $(OCAMLCLIBS) - -export LIBRARY_PATH=../libvirt -export LD_LIBRARY_PATH=../libvirt - -BYTE_TARGETS := mlvirsh -OPT_TARGETS := mlvirsh.opt - -all: $(BYTE_TARGETS) - -opt: $(OPT_TARGETS) - -mlvirsh: mlvirsh.cmo - ocamlfind ocamlc $(OCAMLCPACKAGES) $(OCAMLCFLAGS) $(OCAMLCLIBS) \ - ../libvirt/mllibvirt.cma -o $@ $< - -mlvirsh.opt: mlvirsh.cmx - ocamlfind ocamlopt \ - $(OCAMLOPTPACKAGES) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \ - ../libvirt/mllibvirt.cmxa -o $@ $< - -install: - if [ -x mlvirsh.opt ]; then \ - mkdir -p $(DESTDIR)$(bindir); \ - $(INSTALL) -m 0755 mlvirsh.opt $(DESTDIR)$(bindir)/mlvirsh; \ - fi - -include ../Make.rules