X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=blobdiff_plain;f=virt-top%2FMakefile.in;h=1b80472c178caecce3043304fc1cba0807e2a081;hp=354ab170a2150f51ff61162725e1192ee7778bfc;hb=9a4b8fc45a07dfb0bb1e388d1991673db776baae;hpb=0e09861c06a0c274bcfdacceaee347f8aaa969cb diff --git a/virt-top/Makefile.in b/virt-top/Makefile.in index 354ab17..1b80472 100644 --- a/virt-top/Makefile.in +++ b/virt-top/Makefile.in @@ -1,3 +1,20 @@ +# virt-top +# Copyright (C) 2007 Red Hat Inc., Richard W.M. Jones +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + PACKAGE := @PACKAGE_NAME@ VERSION := @PACKAGE_VERSION@ @@ -11,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 @@ -23,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)