summaryrefslogtreecommitdiffstats
path: root/virt-top/Makefile.in
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2007-10-19 15:44:41 +0100
committerRichard W.M. Jones <rjones@redhat.com>2007-10-19 15:44:41 +0100
commit02f659ab60024d194977a58795232398350eec13 (patch)
tree0fcc8006d97bbc087713274ed16bda8e33580af3 /virt-top/Makefile.in
parent22fd1362126a96472a921d3767ca3220ab13da5a (diff)
downloadvirt-top-02f659ab60024d194977a58795232398350eec13.tar.gz
virt-top-02f659ab60024d194977a58795232398350eec13.tar.xz
virt-top-02f659ab60024d194977a58795232398350eec13.zip
* virt-top/virt_top_calendar.ml: Added --end-time option.
Extra optional dep on ocaml-calendar. * virt-top/virt-top.pod: Document how to compress and split CSV files. Document --end-time option and time formats. * virt-top/virt_top.ml: Allow sub-second delays when in batch and script mode.
Diffstat (limited to 'virt-top/Makefile.in')
-rw-r--r--virt-top/Makefile.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/virt-top/Makefile.in b/virt-top/Makefile.in
index 8eec720..1b80472 100644
--- a/virt-top/Makefile.in
+++ b/virt-top/Makefile.in
@@ -28,6 +28,7 @@ bindir = @bindir@
pkg_curses = @pkg_curses@
pkg_xml_light = @pkg_xml_light@
pkg_csv = @pkg_csv@
+pkg_calendar = @pkg_calendar@
OCAMLCPACKAGES := -package unix,extlib,curses,str
@@ -40,6 +41,10 @@ ifeq ($(pkg_csv),yes)
OBJS += virt_top_csv.cmo
OCAMLCPACKAGES := $(OCAMLCPACKAGES),csv
endif
+ifeq ($(pkg_calendar),yes)
+OBJS += virt_top_calendar.cmo
+OCAMLCPACKAGES := $(OCAMLCPACKAGES),calendar
+endif
OBJS += virt_top_main.cmo
XOBJS := $(OBJS:.cmo=.cmx)