summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2007-08-30 17:50:50 +0100
committerRichard W.M. Jones <rjones@redhat.com>2007-08-30 17:50:50 +0100
commit1a7eb475229918cb43f2962316a029273578daab (patch)
tree9305f710a26adab00323d71361d5a1bdf16edaf4 /examples
parentb8b8754dbd12d118ad359e324994802d878958b1 (diff)
downloadvirt-top-1a7eb475229918cb43f2962316a029273578daab.tar.gz
virt-top-1a7eb475229918cb43f2962316a029273578daab.tar.xz
virt-top-1a7eb475229918cb43f2962316a029273578daab.zip
Remove a few more generated files.
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/examples/Makefile b/examples/Makefile
deleted file mode 100644
index 4692e36..0000000
--- a/examples/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# $Id: Makefile.in,v 1.1 2007/08/21 12:33:40 rjones Exp $
-
-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 := list_domains
-OPT_TARGETS := list_domains.opt
-
-all: $(BYTE_TARGETS)
-
-opt: $(OPT_TARGETS)
-
-list_domains: list_domains.cmo
- ocamlfind ocamlc $(OCAMLCPACKAGES) $(OCAMLCFLAGS) $(OCAMLCLIBS) \
- ../libvirt/mllibvirt.cma -o $@ $<
-
-list_domains.opt: list_domains.cmx
- ocamlfind ocamlopt \
- $(OCAMLOPTPACKAGES) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \
- ../libvirt/mllibvirt.cmxa -o $@ $<
-
-install:
-
-include ../Make.rules