mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
Run this command across the source:
perl -pi.bak -e 's/(20[012][0-9])-20[12][012]/$1-2023/g' `git ls-files`
and remove changes to po{,-docs}/*.po{,t} (these will be regenerated
later when we run 'make dist').
221 lines
4.7 KiB
Makefile
221 lines
4.7 KiB
Makefile
# libguestfs
|
||
# Copyright (C) 2010-2023 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
|
||
|
||
# In alphabetical order.
|
||
sources = \
|
||
actions.ml \
|
||
actions.mli \
|
||
actions_augeas.ml \
|
||
actions_augeas.mli \
|
||
actions_core.ml \
|
||
actions_core.mli \
|
||
actions_core_deprecated.ml \
|
||
actions_core_deprecated.mli \
|
||
actions_debug.ml \
|
||
actions_debug.mli \
|
||
actions_hivex.ml \
|
||
actions_hivex.mli \
|
||
actions_hivex_deprecated.ml \
|
||
actions_hivex_deprecated.mli \
|
||
actions_inspection.ml \
|
||
actions_inspection.mli \
|
||
actions_inspection_deprecated.ml \
|
||
actions_inspection_deprecated.mli \
|
||
actions_internal_tests.ml \
|
||
actions_internal_tests.mli \
|
||
actions_properties.ml \
|
||
actions_properties.mli \
|
||
actions_properties_deprecated.ml \
|
||
actions_properties_deprecated.mli \
|
||
actions_tsk.ml \
|
||
actions_tsk.mli \
|
||
authors.ml \
|
||
authors.mli \
|
||
actions_yara.ml \
|
||
actions_yara.mli \
|
||
bindtests.ml \
|
||
bindtests.mli \
|
||
c.ml \
|
||
c.mli \
|
||
checks.ml \
|
||
checks.mli \
|
||
csharp.ml \
|
||
csharp.mli \
|
||
customize.ml \
|
||
customize.mli \
|
||
daemon.ml \
|
||
daemon.mli \
|
||
docstrings.ml \
|
||
docstrings.mli \
|
||
erlang.ml \
|
||
erlang.mli \
|
||
errnostring.ml \
|
||
errnostring.mli \
|
||
events.ml \
|
||
events.mli \
|
||
fish.ml \
|
||
fish.mli \
|
||
fish_commands.ml \
|
||
fish_commands.mli \
|
||
GObject.ml \
|
||
GObject.mli \
|
||
golang.ml \
|
||
golang.mli \
|
||
haskell.ml \
|
||
haskell.mli \
|
||
java.ml \
|
||
java.mli \
|
||
lua.ml \
|
||
lua.mli \
|
||
main.ml \
|
||
main.mli \
|
||
memoized_cache.ml \
|
||
memoized_cache.mli \
|
||
OCaml.ml \
|
||
OCaml.mli \
|
||
optgroups.ml \
|
||
optgroups.mli \
|
||
perl.ml \
|
||
perl.mli \
|
||
php.ml \
|
||
php.mli \
|
||
pr.ml \
|
||
pr.mli \
|
||
prepopts.ml \
|
||
prepopts.mli \
|
||
proc_nr.ml \
|
||
proc_nr.mli \
|
||
python.ml \
|
||
python.mli \
|
||
ruby.ml \
|
||
ruby.mli \
|
||
rust.ml \
|
||
rust.mli \
|
||
structs.ml \
|
||
structs.mli \
|
||
tests_c_api.ml \
|
||
tests_c_api.mli \
|
||
types.ml \
|
||
types.mli \
|
||
UEFI.ml \
|
||
UEFI.mli \
|
||
utils.ml \
|
||
utils.mli \
|
||
XDR.ml \
|
||
XDR.mli
|
||
|
||
# In build dependency order.
|
||
objects = \
|
||
types.cmo \
|
||
memoized_cache.cmo \
|
||
utils.cmo \
|
||
proc_nr.cmo \
|
||
actions_augeas.cmo \
|
||
actions_core.cmo \
|
||
actions_core_deprecated.cmo \
|
||
actions_debug.cmo \
|
||
actions_hivex.cmo \
|
||
actions_hivex_deprecated.cmo \
|
||
actions_inspection.cmo \
|
||
actions_inspection_deprecated.cmo \
|
||
actions_internal_tests.cmo \
|
||
actions_properties.cmo \
|
||
actions_properties_deprecated.cmo \
|
||
actions_tsk.cmo \
|
||
actions_yara.cmo \
|
||
actions.cmo \
|
||
structs.cmo \
|
||
fish_commands.cmo \
|
||
optgroups.cmo \
|
||
prepopts.cmo \
|
||
events.cmo \
|
||
pr.cmo \
|
||
docstrings.cmo \
|
||
authors.cmo \
|
||
checks.cmo \
|
||
c.cmo \
|
||
XDR.cmo \
|
||
daemon.cmo \
|
||
tests_c_api.cmo \
|
||
fish.cmo \
|
||
OCaml.cmo \
|
||
perl.cmo \
|
||
python.cmo \
|
||
ruby.cmo \
|
||
java.cmo \
|
||
haskell.cmo \
|
||
csharp.cmo \
|
||
php.cmo \
|
||
erlang.cmo \
|
||
lua.cmo \
|
||
GObject.cmo \
|
||
golang.cmo \
|
||
rust.cmo \
|
||
bindtests.cmo \
|
||
errnostring.cmo \
|
||
customize.cmo \
|
||
UEFI.cmo \
|
||
main.cmo
|
||
|
||
EXTRA_DIST = $(sources) files-generated.txt
|
||
|
||
OCAMLPACKAGES = \
|
||
-package unix,str \
|
||
-I $(srcdir) \
|
||
-I . \
|
||
-I $(top_srcdir)/common/mlstdutils \
|
||
-I $(top_builddir)/common/mlstdutils
|
||
OCAMLFLAGS = $(OCAML_FLAGS) $(OCAML_WARN_ERROR) -ccopt '$(CFLAGS)'
|
||
|
||
noinst_PROGRAM = generator
|
||
|
||
generator: $(objects)
|
||
# We need the recursive make here because the generator is
|
||
# rebuilt in ‘make clean’.
|
||
$(MAKE) -C $(top_builddir)/common/mlstdutils mlstdutils.cma
|
||
$(OCAMLFIND) ocamlc $(OCAMLFLAGS) \
|
||
$(OCAMLPACKAGES) -linkpkg mlstdutils.cma \
|
||
$^ -o $@
|
||
|
||
# OCaml dependencies.
|
||
.depend: $(srcdir)/*.mli $(srcdir)/*.ml
|
||
$(top_builddir)/ocaml-dep.sh $^
|
||
-include .depend
|
||
|
||
noinst_DATA = stamp-generator
|
||
|
||
# Run the generator.
|
||
# Git removes empty directories, so in cases where the
|
||
# generator is creating the sole file in a directory, we
|
||
# have to create the directory first.
|
||
stamp-generator: generator
|
||
mkdir -p $(top_srcdir)/perl/lib/Sys
|
||
mkdir -p $(top_srcdir)/ruby/ext/guestfs
|
||
mkdir -p $(top_srcdir)/java/com/redhat/et/libguestfs
|
||
mkdir -p $(top_srcdir)/csharp
|
||
mkdir -p $(top_srcdir)/gobject/src
|
||
mkdir -p $(top_srcdir)/gobject/include
|
||
mkdir -p $(top_srcdir)/gobject/include/guestfs-gobject
|
||
cd $(top_srcdir) && $(abs_builddir)/generator
|
||
touch $@
|
||
|
||
CLEANFILES += $(noinst_DATA) $(noinst_PROGRAM)
|
||
|
||
DISTCLEANFILES += .pod2text.data.version.2
|