mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
After this commit, all annocheck errors are fixed except for: Hardened: virt-get-kernel: MAYB: Gaps were detected in the annobin coverage. Run with -v to list. After discussion with the annocheck maintainers this gap in coverage (which corresponds to the OCaml runtime) seems to be caused either by the runtime not being linked with the right flags, or might be a bug in annocheck itself. In any case it's not something that can be resolved within the scope of libguestfs.
173 lines
4.1 KiB
Makefile
173 lines
4.1 KiB
Makefile
# libguestfs virt-dib tool
|
|
# Copyright (C) 2015 Red Hat Inc.
|
|
#
|
|
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
include $(top_srcdir)/subdir-rules.mk
|
|
|
|
EXTRA_DIST = \
|
|
$(SOURCES_MLI) $(SOURCES_ML) $(SOURCES_C) \
|
|
test-virt-dib-docs.sh \
|
|
virt-dib.pod
|
|
|
|
SOURCES_MLI = \
|
|
cmdline.mli \
|
|
dib.mli \
|
|
elements.mli \
|
|
output_format.mli \
|
|
$(patsubst %,output_format_%.mli,$(formats)) \
|
|
utils.mli
|
|
|
|
# Filenames output_format_<name>.ml in alphabetical order.
|
|
formats = \
|
|
docker \
|
|
qcow2 \
|
|
raw \
|
|
squashfs \
|
|
tar \
|
|
tgz \
|
|
vhd
|
|
|
|
SOURCES_ML = \
|
|
utils.ml \
|
|
output_format.ml \
|
|
cmdline.ml \
|
|
elements.ml \
|
|
$(patsubst %,output_format_%.ml,$(formats)) \
|
|
dib.ml
|
|
|
|
SOURCES_C = \
|
|
dummy.c
|
|
|
|
bin_PROGRAMS =
|
|
|
|
if HAVE_OCAML
|
|
|
|
bin_PROGRAMS += virt-dib
|
|
|
|
virt_dib_SOURCES = $(SOURCES_C)
|
|
virt_dib_CPPFLAGS = \
|
|
-I. \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib \
|
|
-I$(shell $(OCAMLC) -where) \
|
|
-I$(top_srcdir)/gnulib/lib \
|
|
-I$(top_srcdir)/common/utils \
|
|
-I$(top_srcdir)/lib
|
|
virt_dib_CFLAGS = \
|
|
-pthread \
|
|
$(WARN_CFLAGS) $(WERROR_CFLAGS)
|
|
|
|
BOBJECTS = \
|
|
$(SOURCES_ML:.ml=.cmo)
|
|
XOBJECTS = $(BOBJECTS:.cmo=.cmx)
|
|
|
|
# -I $(top_builddir)/lib/.libs is a hack which forces corresponding -L
|
|
# option to be passed to gcc, so we don't try linking against an
|
|
# installed copy of libguestfs.
|
|
OCAMLPACKAGES = \
|
|
-package str,unix \
|
|
-I $(top_builddir)/common/utils/.libs \
|
|
-I $(top_builddir)/lib/.libs \
|
|
-I $(top_builddir)/gnulib/lib/.libs \
|
|
-I $(top_builddir)/ocaml \
|
|
-I $(top_builddir)/common/mlstdutils \
|
|
-I $(top_builddir)/common/mlutils \
|
|
-I $(top_builddir)/common/mlgettext \
|
|
-I $(top_builddir)/common/mlpcre \
|
|
-I $(top_builddir)/common/mltools
|
|
if HAVE_OCAML_PKG_GETTEXT
|
|
OCAMLPACKAGES += -package gettext-stub
|
|
endif
|
|
|
|
OCAMLCLIBS = \
|
|
-pthread -lpthread \
|
|
-lutils \
|
|
$(LIBXML2_LIBS) \
|
|
$(LIBINTL) \
|
|
-lgnu
|
|
|
|
OCAMLFLAGS = $(OCAML_FLAGS) $(OCAML_WARN_ERROR) -ccopt '$(CFLAGS)'
|
|
|
|
if !HAVE_OCAMLOPT
|
|
OBJECTS = $(BOBJECTS)
|
|
else
|
|
OBJECTS = $(XOBJECTS)
|
|
endif
|
|
|
|
OCAMLLINKFLAGS = \
|
|
mlstdutils.$(MLARCHIVE) \
|
|
mlguestfs.$(MLARCHIVE) \
|
|
mlcutils.$(MLARCHIVE) \
|
|
mlgettext.$(MLARCHIVE) \
|
|
mlpcre.$(MLARCHIVE) \
|
|
mltools.$(MLARCHIVE) \
|
|
$(LINK_CUSTOM_OCAMLC_ONLY)
|
|
|
|
virt_dib_DEPENDENCIES = \
|
|
$(OBJECTS) \
|
|
../common/mlstdutils/mlstdutils.$(MLARCHIVE) \
|
|
../common/mlutils/mlcutils.$(MLARCHIVE) \
|
|
../common/mlgettext/mlgettext.$(MLARCHIVE) \
|
|
../common/mlpcre/mlpcre.$(MLARCHIVE) \
|
|
../common/mltools/mltools.$(MLARCHIVE) \
|
|
$(top_srcdir)/ocaml-link.sh
|
|
virt_dib_LINK = \
|
|
$(top_srcdir)/ocaml-link.sh -cclib '$(OCAMLCLIBS)' -- \
|
|
$(OCAMLFIND) $(BEST) $(OCAMLFLAGS) $(OCAMLPACKAGES) $(OCAMLLINKFLAGS) \
|
|
$(OBJECTS) -o $@
|
|
|
|
# The output_format_*.mli files are all empty and autogenerated.
|
|
CLEANFILES += \
|
|
$(patsubst %,output_format_%.mli,$(formats))
|
|
|
|
output_format_%.mli:
|
|
rm -f $@ $@-t
|
|
echo '(* This file is generated by Makefile.am. *)' >> $@-t
|
|
echo '(* Nothing is exported from output format modules. *)' >> $@-t
|
|
mv $@-t $@
|
|
|
|
# Tests.
|
|
|
|
TESTS_ENVIRONMENT = $(top_builddir)/run --test
|
|
|
|
TESTS = test-virt-dib-docs.sh
|
|
|
|
# Manual pages and HTML files for the website.
|
|
|
|
man_MANS = virt-dib.1
|
|
|
|
noinst_DATA = $(top_builddir)/website/virt-dib.1.html
|
|
|
|
virt-dib.1 $(top_builddir)/website/virt-dib.1.html: stamp-virt-dib.pod
|
|
|
|
stamp-virt-dib.pod: virt-dib.pod
|
|
$(PODWRAPPER) \
|
|
--man virt-dib.1 \
|
|
--html $(top_builddir)/website/virt-dib.1.html \
|
|
--license GPLv2+ \
|
|
--warning safe \
|
|
$<
|
|
touch $@
|
|
|
|
# OCaml dependencies.
|
|
.depend: $(SOURCES_MLI) $(SOURCES_ML)
|
|
$(top_builddir)/ocaml-dep.sh $^
|
|
-include .depend
|
|
|
|
endif
|
|
|
|
.PHONY: docs
|