Files
libguestfs/generator/Makefile.am
Hiroyuki_Katsura 3bbd00c83e Rust bindings: Add Rust bindings
This patch includes Actions and their tests. Missing:

- Events
- Examples

Rust bindings: Add create / close functions

Rust bindings: Add 4 bindings tests

Rust bindings: Add generator of structs

Rust bindings: Add generator of structs for optional arguments

Rust bindings: Add generator of function signatures

Rust bindings: Complete actions

Rust bindings: Fix memory management

Rust bindings: Add bindtests

Rust bindings: Add additional 4 bindings tests

Rust bindings: Format test files

Rust bindings: Incorporate bindings to build system
2019-07-29 10:28:31 +01:00

218 lines
4.6 KiB
Makefile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# libguestfs
# Copyright (C) 2010-2019 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 \
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 \
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