mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
According to the Erlang website: The old legacy erl_interface library (functions with prefix erl_) is deprecated as of OTP 22, and will be removed in OTP 23. This does not apply to the ei library. Reasonably new gcc compilers will issue deprecation warnings. In order to disable these warnings, define the macro EI_NO_DEPR_WARN. That's a shame and probably means we will have to drop the Erlang bindings soon unless someone ports them to this new API (stable APIs FTW people!). In the meantime add the flag to prevent warn-errors about deprecation.
117 lines
2.8 KiB
Makefile
117 lines
2.8 KiB
Makefile
# libguestfs Erlang bindings
|
|
# Copyright (C) 2011 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
|
|
|
|
generator_built = \
|
|
bindtests.erl \
|
|
actions-0.c \
|
|
actions-1.c \
|
|
actions-2.c \
|
|
actions-3.c \
|
|
actions-4.c \
|
|
actions-5.c \
|
|
actions-6.c \
|
|
actions.h \
|
|
dispatch.c \
|
|
structs.c \
|
|
guestfs.erl
|
|
|
|
EXTRA_DIST = \
|
|
$(generator_built) \
|
|
run-bindtests \
|
|
tests/*.erl \
|
|
README
|
|
|
|
CLEANFILES += \
|
|
$(erlang_bin_DATA)
|
|
|
|
# Erlang makes a new libguestfs-<VERSION>/ebin subdirectory each time
|
|
# we build, so we have to remove that and any previous copies.
|
|
clean-local:
|
|
rm -rf libguestfs-1.*
|
|
|
|
if HAVE_ERLANG
|
|
|
|
erlang_bindir = $(ERLANG_LIB_DIR)/$(PACKAGE_NAME)-$(PACKAGE_VERSION)/ebin
|
|
|
|
erlang_bin_DATA = guestfs.beam
|
|
|
|
# In order for the tests to work on the local copy, we have to create
|
|
# a phony directory hierarchy:
|
|
#
|
|
# $(builddir)/erlang/libguestfs-$(VERSION)/ebin/guestfs.beam
|
|
#
|
|
# The ./run script will set $ERL_LIBS to point to $(builddir)/erlang.
|
|
# (See: http://www.erlang.org/doc/man/code.html)
|
|
guestfs.beam: guestfs.erl
|
|
$(guestfs_am_v_erlc)$(ERLC) +debug_info $^
|
|
mkdir -p $(PACKAGE)-$(VERSION)/ebin
|
|
cp $@ $(PACKAGE)-$(VERSION)/ebin
|
|
|
|
bin_PROGRAMS = erl-guestfs
|
|
|
|
erl_guestfs_SOURCES = \
|
|
actions-0.c \
|
|
actions-1.c \
|
|
actions-2.c \
|
|
actions-3.c \
|
|
actions-4.c \
|
|
actions-5.c \
|
|
actions-6.c \
|
|
actions.h \
|
|
dispatch.c \
|
|
structs.c \
|
|
main.c
|
|
|
|
erl_guestfs_CPPFLAGS = \
|
|
-DGUESTFS_PRIVATE=1 \
|
|
-I$(top_srcdir)/common/utils -I$(top_builddir)/common/utils \
|
|
-I$(top_srcdir)/lib -I$(top_builddir)/lib \
|
|
-I$(srcdir)/../gnulib/lib -I../gnulib/lib \
|
|
-I$(ERLANG_LIB_DIR_erl_interface)/include \
|
|
-DEI_NO_DEPR_WARN
|
|
|
|
erl_guestfs_CFLAGS = \
|
|
$(WARN_CFLAGS) $(WERROR_CFLAGS)
|
|
|
|
erl_guestfs_LDADD = \
|
|
$(ERLANG_LIB_DIR_erl_interface)/lib/liberl_interface.a \
|
|
$(ERLANG_LIB_DIR_erl_interface)/lib/libei.a \
|
|
-lpthread \
|
|
$(top_builddir)/common/utils/libutils.la \
|
|
$(top_builddir)/lib/libguestfs.la \
|
|
$(LIBXML2_LIBS) \
|
|
$(LIBVIRT_LIBS) \
|
|
$(LTLIBINTL) \
|
|
../gnulib/lib/libgnu.la
|
|
|
|
TESTS_ENVIRONMENT = $(top_builddir)/run --test
|
|
|
|
TESTS = run-bindtests
|
|
|
|
if ENABLE_APPLIANCE
|
|
TESTS += \
|
|
tests/010-load.erl \
|
|
tests/030-config.erl \
|
|
tests/050-lvcreate.erl \
|
|
tests/060-readdir.erl \
|
|
tests/070-optargs.erl
|
|
endif
|
|
|
|
endif
|