X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=virt-df%2FMakefile.in;h=4a56d2d381b509f5d6413c0d13ef38137725b4e8;hb=fabdbe4e169e123774ab1bf665cdf4a4e9536296;hp=ed820e62625e30f9c5913728b201d53bb2ebf123;hpb=4bc4d8bfaa99eae626c1c5fbe50096afb05fd0da;p=virt-top.git diff --git a/virt-df/Makefile.in b/virt-df/Makefile.in index ed820e6..4a56d2d 100644 --- a/virt-df/Makefile.in +++ b/virt-df/Makefile.in @@ -1,4 +1,19 @@ -# $Id: Makefile.in,v 1.6 2007/08/23 11:09:19 rjones Exp $ +# virt-df +# 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@ @@ -10,20 +25,39 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ -pkg_xml_light = @pkg_xml_light@ +pkg_gettext = @pkg_gettext@ + +#OCAMLCPACKAGES := -package unix,extlib,xml-light,bitmatch +OCAMLCPACKAGES := -package unix,extlib,xml-light -I +bitmatch -OCAMLCPACKAGES := -package unix,extlib,xml-light +ifneq ($(pkg_gettext),no) +OCAMLCPACKAGES += -package gettext-stub +endif + +OBJS := \ + virt_df_gettext.cmo \ + virt_df.cmo \ + virt_df_ext2.cmo \ + virt_df_linux_swap.cmo \ + virt_df_lvm2.cmo \ + virt_df_mbr.cmo \ + virt_df_main.cmo -OBJS := virt_df.cmo XOBJS := $(OBJS:.cmo=.cmx) +SYNTAX := -pp "camlp4o -I`ocamlc -where`/bitmatch pa_bitmatch.cmo" + OCAMLCPACKAGES += -I ../libvirt -OCAMLCFLAGS := -g -w s -OCAMLCLIBS := -linkpkg +OCAMLCFLAGS := -g -w s $(SYNTAX) +#OCAMLCLIBS := -linkpkg +OCAMLCLIBS := -linkpkg bitmatch.cma OCAMLOPTPACKAGES := $(OCAMLCPACKAGES) -OCAMLOPTFLAGS := -w s -OCAMLOPTLIBS := $(OCAMLCLIBS) +OCAMLOPTFLAGS := -w s $(SYNTAX) +#OCAMLOPTLIBS := $(OCAMLCLIBS) +OCAMLOPTLIBS := -linkpkg bitmatch.cmxa + +OCAMLDEPFLAGS := $(SYNTAX) export LIBRARY_PATH=../libvirt export LD_LIBRARY_PATH=../libvirt @@ -31,9 +65,9 @@ export LD_LIBRARY_PATH=../libvirt BYTE_TARGETS := virt-df OPT_TARGETS := virt-df.opt -#ifeq ($(HAVE_PERLDOC),perldoc) -#BYTE_TARGETS += virt-top.1 virt-top.txt -#endif +ifeq ($(HAVE_PERLDOC),perldoc) +BYTE_TARGETS += virt-df.1 virt-df.txt +endif all: $(BYTE_TARGETS) @@ -46,17 +80,17 @@ virt-df: $(OBJS) virt-df.opt: $(XOBJS) ocamlfind ocamlopt \ $(OCAMLOPTPACKAGES) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \ - ../libvirt/mllibvirt.cmxa -cclib -lncurses -o $@ $^ + ../libvirt/mllibvirt.cmxa -o $@ $^ # Manual page. -#ifeq ($(HAVE_PERLDOC),perldoc) -#virt-top.1: virt-top.pod -# pod2man -c "Virtualization Support" --release "$(PACKAGE)-$(VERSION)" \ -# $< > $@ -# -#virt-top.txt: virt-top.pod -# pod2text $< > $@ -#endif +ifeq ($(HAVE_PERLDOC),perldoc) +virt-df.1: virt-df.pod + pod2man -c "Virtualization Support" --release "$(PACKAGE)-$(VERSION)" \ + $< > $@ + +virt-df.txt: virt-df.pod + pod2text $< > $@ +endif install: if [ -x virt-df.opt ]; then \