X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=virt-top%2FMakefile.in;h=390fc1b57dc225887a20361837b764e06da5dede;hb=617ee3553ff13690643b42a084daaadd989b45c9;hp=8eec72087323689ebc239dff290dfc846aa9c204;hpb=9bb5f67c0d8a6e8dad7de72e2488ee73c90f7d43;p=virt-top.git diff --git a/virt-top/Makefile.in b/virt-top/Makefile.in old mode 100644 new mode 100755 index 8eec720..390fc1b --- a/virt-top/Makefile.in +++ b/virt-top/Makefile.in @@ -28,17 +28,32 @@ bindir = @bindir@ pkg_curses = @pkg_curses@ pkg_xml_light = @pkg_xml_light@ pkg_csv = @pkg_csv@ +pkg_calendar = @pkg_calendar@ +pkg_calendar2 = @pkg_calendar2@ +pkg_gettext = @pkg_gettext@ OCAMLCPACKAGES := -package unix,extlib,curses,str -OBJS := virt_top_utils.cmo virt_top.cmo +ifeq ($(pkg_gettext),yes) +OCAMLCPACKAGES += -package gettext-stub +endif + +OBJS := virt_top_gettext.cmo virt_top_utils.cmo virt_top.cmo ifeq ($(pkg_xml_light),yes) OBJS += virt_top_xml.cmo -OCAMLCPACKAGES := $(OCAMLCPACKAGES),xml-light +OCAMLCPACKAGES += -package xml-light endif ifeq ($(pkg_csv),yes) OBJS += virt_top_csv.cmo -OCAMLCPACKAGES := $(OCAMLCPACKAGES),csv +OCAMLCPACKAGES += -package csv +endif +ifeq ($(pkg_calendar),yes) +OBJS += virt_top_calendar1.cmo +OCAMLCPACKAGES += -package calendar +endif +ifneq ($(pkg_calendar2),no) +OBJS += virt_top_calendar2.cmo +OCAMLCPACKAGES += -package calendar endif OBJS += virt_top_main.cmo