mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-20 02:25:14 -07:00
Regen
This commit is contained in:
parent
9683141c86
commit
a77269a21b
36
Makefile.in
36
Makefile.in
@ -177,6 +177,10 @@ am__recursive_targets = \
|
|||||||
$(am__extra_recursive_targets)
|
$(am__extra_recursive_targets)
|
||||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||||
cscope distdir distdir-am dist dist-all distcheck
|
cscope distdir distdir-am dist dist-all distcheck
|
||||||
|
am__extra_recursive_targets = check-valgrind-recursive \
|
||||||
|
check-valgrind-memcheck-recursive \
|
||||||
|
check-valgrind-helgrind-recursive check-valgrind-drd-recursive \
|
||||||
|
check-valgrind-sgcheck-recursive
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||||
# Read a list of newline-separated strings from the standard input,
|
# Read a list of newline-separated strings from the standard input,
|
||||||
# and print each of them once, without duplicates. Input order is
|
# and print each of them once, without duplicates. Input order is
|
||||||
@ -546,6 +550,11 @@ $(am__recursive_targets):
|
|||||||
if test "$$dot_seen" = "no"; then \
|
if test "$$dot_seen" = "no"; then \
|
||||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||||
fi; test -z "$$fail"
|
fi; test -z "$$fail"
|
||||||
|
check-valgrind-local:
|
||||||
|
check-valgrind-memcheck-local:
|
||||||
|
check-valgrind-helgrind-local:
|
||||||
|
check-valgrind-drd-local:
|
||||||
|
check-valgrind-sgcheck-local:
|
||||||
|
|
||||||
ID: $(am__tagged_files)
|
ID: $(am__tagged_files)
|
||||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||||
@ -853,6 +862,26 @@ distclean-generic:
|
|||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
check-valgrind: check-valgrind-recursive
|
||||||
|
|
||||||
|
check-valgrind-am: check-valgrind-local
|
||||||
|
|
||||||
|
check-valgrind-drd: check-valgrind-drd-recursive
|
||||||
|
|
||||||
|
check-valgrind-drd-am: check-valgrind-drd-local
|
||||||
|
|
||||||
|
check-valgrind-helgrind: check-valgrind-helgrind-recursive
|
||||||
|
|
||||||
|
check-valgrind-helgrind-am: check-valgrind-helgrind-local
|
||||||
|
|
||||||
|
check-valgrind-memcheck: check-valgrind-memcheck-recursive
|
||||||
|
|
||||||
|
check-valgrind-memcheck-am: check-valgrind-memcheck-local
|
||||||
|
|
||||||
|
check-valgrind-sgcheck: check-valgrind-sgcheck-recursive
|
||||||
|
|
||||||
|
check-valgrind-sgcheck-am: check-valgrind-sgcheck-local
|
||||||
|
|
||||||
clean: clean-recursive
|
clean: clean-recursive
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||||
@ -926,7 +955,12 @@ uninstall-am: uninstall-pkgconfigDATA
|
|||||||
.MAKE: $(am__recursive_targets) install-am install-strip
|
.MAKE: $(am__recursive_targets) install-am install-strip
|
||||||
|
|
||||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
||||||
am--refresh check check-am clean clean-cscope clean-generic \
|
am--refresh check check-am check-valgrind-am \
|
||||||
|
check-valgrind-drd-am check-valgrind-drd-local \
|
||||||
|
check-valgrind-helgrind-am check-valgrind-helgrind-local \
|
||||||
|
check-valgrind-local check-valgrind-memcheck-am \
|
||||||
|
check-valgrind-memcheck-local check-valgrind-sgcheck-am \
|
||||||
|
check-valgrind-sgcheck-local clean clean-cscope clean-generic \
|
||||||
clean-libtool cscope cscopelist-am ctags ctags-am dist \
|
clean-libtool cscope cscopelist-am ctags ctags-am dist \
|
||||||
dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
|
dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
|
||||||
dist-xz dist-zip dist-zstd distcheck distclean \
|
dist-xz dist-zip dist-zstd distcheck distclean \
|
||||||
|
17
aclocal.m4
vendored
17
aclocal.m4
vendored
@ -418,6 +418,23 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
|
|||||||
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
|
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
|
||||||
[AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
|
[AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
|
||||||
|
|
||||||
|
# AM_EXTRA_RECURSIVE_TARGETS -*- Autoconf -*-
|
||||||
|
|
||||||
|
# Copyright (C) 2012-2021 Free Software Foundation, Inc.
|
||||||
|
#
|
||||||
|
# This file is free software; the Free Software Foundation
|
||||||
|
# gives unlimited permission to copy and/or distribute it,
|
||||||
|
# with or without modifications, as long as this notice is preserved.
|
||||||
|
|
||||||
|
# AM_EXTRA_RECURSIVE_TARGETS
|
||||||
|
# --------------------------
|
||||||
|
# Define the list of user recursive targets. This macro exists only to
|
||||||
|
# be traced by Automake, which will ensure that a proper definition of
|
||||||
|
# user-defined recursive targets (and associated rules) is propagated
|
||||||
|
# into all the generated Makefiles.
|
||||||
|
# TODO: We should really reject non-literal arguments here...
|
||||||
|
AC_DEFUN([AM_EXTRA_RECURSIVE_TARGETS], [])
|
||||||
|
|
||||||
# Do all the work for Automake. -*- Autoconf -*-
|
# Do all the work for Automake. -*- Autoconf -*-
|
||||||
|
|
||||||
# Copyright (C) 1996-2021 Free Software Foundation, Inc.
|
# Copyright (C) 1996-2021 Free Software Foundation, Inc.
|
||||||
|
@ -127,6 +127,10 @@ am__can_run_installinfo = \
|
|||||||
n|no|NO) false;; \
|
n|no|NO) false;; \
|
||||||
*) (install-info --version) >/dev/null 2>&1;; \
|
*) (install-info --version) >/dev/null 2>&1;; \
|
||||||
esac
|
esac
|
||||||
|
am__extra_recursive_targets = check-valgrind-recursive \
|
||||||
|
check-valgrind-memcheck-recursive \
|
||||||
|
check-valgrind-helgrind-recursive check-valgrind-drd-recursive \
|
||||||
|
check-valgrind-sgcheck-recursive
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
am__DIST_COMMON = $(srcdir)/Makefile.in
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
@ -409,6 +413,11 @@ mostlyclean-libtool:
|
|||||||
|
|
||||||
clean-libtool:
|
clean-libtool:
|
||||||
-rm -rf .libs _libs
|
-rm -rf .libs _libs
|
||||||
|
check-valgrind-local:
|
||||||
|
check-valgrind-memcheck-local:
|
||||||
|
check-valgrind-helgrind-local:
|
||||||
|
check-valgrind-drd-local:
|
||||||
|
check-valgrind-sgcheck-local:
|
||||||
tags TAGS:
|
tags TAGS:
|
||||||
|
|
||||||
ctags CTAGS:
|
ctags CTAGS:
|
||||||
@ -482,6 +491,26 @@ distclean-generic:
|
|||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
check-valgrind: check-valgrind-am
|
||||||
|
|
||||||
|
check-valgrind-am: check-valgrind-local
|
||||||
|
|
||||||
|
check-valgrind-drd: check-valgrind-drd-am
|
||||||
|
|
||||||
|
check-valgrind-drd-am: check-valgrind-drd-local
|
||||||
|
|
||||||
|
check-valgrind-helgrind: check-valgrind-helgrind-am
|
||||||
|
|
||||||
|
check-valgrind-helgrind-am: check-valgrind-helgrind-local
|
||||||
|
|
||||||
|
check-valgrind-memcheck: check-valgrind-memcheck-am
|
||||||
|
|
||||||
|
check-valgrind-memcheck-am: check-valgrind-memcheck-local
|
||||||
|
|
||||||
|
check-valgrind-sgcheck: check-valgrind-sgcheck-am
|
||||||
|
|
||||||
|
check-valgrind-sgcheck-am: check-valgrind-sgcheck-local
|
||||||
|
|
||||||
clean: clean-am
|
clean: clean-am
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||||
@ -550,7 +579,12 @@ uninstall-am:
|
|||||||
|
|
||||||
.MAKE: install-am install-strip
|
.MAKE: install-am install-strip
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
.PHONY: all all-am check check-am check-valgrind-am \
|
||||||
|
check-valgrind-drd-am check-valgrind-drd-local \
|
||||||
|
check-valgrind-helgrind-am check-valgrind-helgrind-local \
|
||||||
|
check-valgrind-local check-valgrind-memcheck-am \
|
||||||
|
check-valgrind-memcheck-local check-valgrind-sgcheck-am \
|
||||||
|
check-valgrind-sgcheck-local clean clean-generic clean-libtool \
|
||||||
cscopelist-am ctags-am distclean distclean-generic \
|
cscopelist-am ctags-am distclean distclean-generic \
|
||||||
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
||||||
install install-am install-data install-data-am install-dvi \
|
install install-am install-data install-data-am install-dvi \
|
||||||
|
160
configure
vendored
160
configure
vendored
@ -1550,7 +1550,6 @@ Optional Features:
|
|||||||
--enable-opt Optimize for the native CPU - The resulting library
|
--enable-opt Optimize for the native CPU - The resulting library
|
||||||
will be faster but not portable
|
will be faster but not portable
|
||||||
--enable-valgrind Whether to enable Valgrind on the unit tests
|
--enable-valgrind Whether to enable Valgrind on the unit tests
|
||||||
(requires GNU make)
|
|
||||||
--disable-valgrind-memcheck
|
--disable-valgrind-memcheck
|
||||||
Whether to skip memcheck during the Valgrind tests
|
Whether to skip memcheck during the Valgrind tests
|
||||||
--disable-valgrind-helgrind
|
--disable-valgrind-helgrind
|
||||||
@ -6122,7 +6121,7 @@ ax_pthread_flags="pthreads none -Kthread -pthread -pthreads -mthreads pthread --
|
|||||||
# --thread-safe: KAI C++
|
# --thread-safe: KAI C++
|
||||||
# pthread-config: use pthread-config program (for GNU Pth library)
|
# pthread-config: use pthread-config program (for GNU Pth library)
|
||||||
|
|
||||||
case $target_os in
|
case $host_os in
|
||||||
|
|
||||||
freebsd*)
|
freebsd*)
|
||||||
|
|
||||||
@ -6240,7 +6239,7 @@ fi
|
|||||||
# definitions is, on some systems, a strong hint that pthreads support is
|
# definitions is, on some systems, a strong hint that pthreads support is
|
||||||
# correctly enabled
|
# correctly enabled
|
||||||
|
|
||||||
case $target_os in
|
case $host_os in
|
||||||
darwin* | hpux* | linux* | osf* | solaris*)
|
darwin* | hpux* | linux* | osf* | solaris*)
|
||||||
ax_pthread_check_macro="_REENTRANT"
|
ax_pthread_check_macro="_REENTRANT"
|
||||||
;;
|
;;
|
||||||
@ -6565,7 +6564,7 @@ then :
|
|||||||
printf %s "(cached) " >&6
|
printf %s "(cached) " >&6
|
||||||
else $as_nop
|
else $as_nop
|
||||||
ax_cv_PTHREAD_SPECIAL_FLAGS=no
|
ax_cv_PTHREAD_SPECIAL_FLAGS=no
|
||||||
case $target_os in
|
case $host_os in
|
||||||
solaris*)
|
solaris*)
|
||||||
ax_cv_PTHREAD_SPECIAL_FLAGS="-D_POSIX_PTHREAD_SEMANTICS"
|
ax_cv_PTHREAD_SPECIAL_FLAGS="-D_POSIX_PTHREAD_SEMANTICS"
|
||||||
;;
|
;;
|
||||||
@ -6626,7 +6625,7 @@ fi
|
|||||||
|
|
||||||
# More AIX lossage: compile with *_r variant
|
# More AIX lossage: compile with *_r variant
|
||||||
if test "x$GCC" != "xyes"; then
|
if test "x$GCC" != "xyes"; then
|
||||||
case $target_os in
|
case $host_os in
|
||||||
aix*)
|
aix*)
|
||||||
case "x/$CC" in #(
|
case "x/$CC" in #(
|
||||||
x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6) :
|
x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6) :
|
||||||
@ -7282,12 +7281,15 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-valgrind was given.
|
# Check whether --enable-valgrind was given.
|
||||||
if test ${enable_valgrind+y}
|
if test ${enable_valgrind+y}
|
||||||
then :
|
then :
|
||||||
enableval=$enable_valgrind; enable_valgrind=$enableval
|
enableval=$enable_valgrind; enable_valgrind=$enableval
|
||||||
else $as_nop
|
else $as_nop
|
||||||
enable_valgrind=no
|
enable_valgrind=
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -7666,7 +7668,7 @@ valgrind_quiet_ = $(valgrind_quiet_$(AM_DEFAULT_VERBOSITY))
|
|||||||
valgrind_quiet_0 = --quiet
|
valgrind_quiet_0 = --quiet
|
||||||
valgrind_v_use = $(valgrind_v_use_$(V))
|
valgrind_v_use = $(valgrind_v_use_$(V))
|
||||||
valgrind_v_use_ = $(valgrind_v_use_$(AM_DEFAULT_VERBOSITY))
|
valgrind_v_use_ = $(valgrind_v_use_$(AM_DEFAULT_VERBOSITY))
|
||||||
valgrind_v_use_0 = @echo " USE " $(patsubst check-valgrind-%,%,$''@):;
|
valgrind_v_use_0 = @echo " USE " $(patsubst check-valgrind-%-local,%,$''@):;
|
||||||
|
|
||||||
# Support running with and without libtool.
|
# Support running with and without libtool.
|
||||||
ifneq ($(LIBTOOL),)
|
ifneq ($(LIBTOOL),)
|
||||||
@ -7676,12 +7678,12 @@ valgrind_lt =
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# Use recursive makes in order to ignore errors during check
|
# Use recursive makes in order to ignore errors during check
|
||||||
check-valgrind:
|
check-valgrind-local:
|
||||||
ifeq ($(VALGRIND_ENABLED),yes)
|
ifeq ($(VALGRIND_ENABLED),yes)
|
||||||
$(A''M_V_at)$(MAKE) $(AM_MAKEFLAGS) -k \
|
$(A''M_V_at)$(MAKE) $(AM_MAKEFLAGS) -k \
|
||||||
$(foreach tool, $(valgrind_enabled_tools), check-valgrind-$(tool))
|
$(foreach tool, $(valgrind_enabled_tools), check-valgrind-$(tool))
|
||||||
else
|
else
|
||||||
@echo "Need to use GNU make and reconfigure with --enable-valgrind"
|
@echo "Need to reconfigure with --enable-valgrind"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Valgrind running
|
# Valgrind running
|
||||||
@ -7695,14 +7697,16 @@ VALGRIND_LOG_COMPILER = \
|
|||||||
$(valgrind_lt) \
|
$(valgrind_lt) \
|
||||||
$(VALGRIND) $(VALGRIND_SUPPRESSIONS) --error-exitcode=1 $(VALGRIND_FLAGS)
|
$(VALGRIND) $(VALGRIND_SUPPRESSIONS) --error-exitcode=1 $(VALGRIND_FLAGS)
|
||||||
|
|
||||||
define valgrind_tool_rule =
|
define valgrind_tool_rule
|
||||||
check-valgrind-$(1):
|
check-valgrind-$(1)-local:
|
||||||
ifeq ($$(VALGRIND_ENABLED)-$$(ENABLE_VALGRIND_$(1)),yes-yes)
|
ifeq ($$(VALGRIND_ENABLED)-$$(ENABLE_VALGRIND_$(1)),yes-yes)
|
||||||
|
ifneq ($$(TESTS),)
|
||||||
$$(valgrind_v_use)$$(MAKE) check-TESTS \
|
$$(valgrind_v_use)$$(MAKE) check-TESTS \
|
||||||
TESTS_ENVIRONMENT="$$(VALGRIND_TESTS_ENVIRONMENT)" \
|
TESTS_ENVIRONMENT="$$(VALGRIND_TESTS_ENVIRONMENT)" \
|
||||||
LOG_COMPILER="$$(VALGRIND_LOG_COMPILER)" \
|
LOG_COMPILER="$$(VALGRIND_LOG_COMPILER)" \
|
||||||
LOG_FLAGS="$$(valgrind_$(1)_flags)" \
|
LOG_FLAGS="$$(valgrind_$(1)_flags)" \
|
||||||
TEST_SUITE_LOG=test-suite-$(1).log
|
TEST_SUITE_LOG=test-suite-$(1).log
|
||||||
|
endif
|
||||||
else ifeq ($$(VALGRIND_ENABLED),yes)
|
else ifeq ($$(VALGRIND_ENABLED),yes)
|
||||||
@echo "Need to reconfigure with --enable-valgrind-$(1)"
|
@echo "Need to reconfigure with --enable-valgrind-$(1)"
|
||||||
else
|
else
|
||||||
@ -7718,18 +7722,9 @@ A''M_DISTCHECK_CONFIGURE_FLAGS += --disable-valgrind
|
|||||||
MOSTLYCLEANFILES ?=
|
MOSTLYCLEANFILES ?=
|
||||||
MOSTLYCLEANFILES += $(valgrind_log_files)
|
MOSTLYCLEANFILES += $(valgrind_log_files)
|
||||||
|
|
||||||
.PHONY: check-valgrind $(add-prefix check-valgrind-,$(valgrind_tools))
|
.PHONY: check-valgrind $(addprefix check-valgrind-,$(valgrind_tools))
|
||||||
'
|
'
|
||||||
|
|
||||||
if test "$enable_valgrind" != "yes"
|
|
||||||
then :
|
|
||||||
|
|
||||||
VALGRIND_CHECK_RULES='
|
|
||||||
check-valgrind:
|
|
||||||
@echo "Need to use GNU make and reconfigure with --enable-valgrind"'
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -7834,6 +7829,7 @@ main (void)
|
|||||||
|
|
||||||
#ifdef __wasi__
|
#ifdef __wasi__
|
||||||
int ok;
|
int ok;
|
||||||
|
(void)ok;
|
||||||
#else
|
#else
|
||||||
choke me
|
choke me
|
||||||
#endif
|
#endif
|
||||||
@ -7860,6 +7856,116 @@ fi
|
|||||||
case $host_os in #(
|
case $host_os in #(
|
||||||
linux-gnu) :
|
linux-gnu) :
|
||||||
|
|
||||||
|
ac_save_cflags=$CFLAGS
|
||||||
|
ac_cwerror_flag=yes
|
||||||
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Werror" >&5
|
||||||
|
printf %s "checking whether C compiler accepts -Werror... " >&6; }
|
||||||
|
if test ${ax_cv_check_cflags___Werror+y}
|
||||||
|
then :
|
||||||
|
printf %s "(cached) " >&6
|
||||||
|
else $as_nop
|
||||||
|
|
||||||
|
ax_check_save_flags=$CFLAGS
|
||||||
|
CFLAGS="$CFLAGS -Werror"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
#include <time.h>
|
||||||
|
int
|
||||||
|
main (void)
|
||||||
|
{
|
||||||
|
time_t x; int fodder = 0; if (fodder > -1000 && time(&x)) return (int) x
|
||||||
|
|
||||||
|
;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_link "$LINENO"
|
||||||
|
then :
|
||||||
|
ax_cv_check_cflags___Werror=yes
|
||||||
|
else $as_nop
|
||||||
|
ax_cv_check_cflags___Werror=no
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.beam \
|
||||||
|
conftest$ac_exeext conftest.$ac_ext
|
||||||
|
CFLAGS=$ax_check_save_flags
|
||||||
|
fi
|
||||||
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___Werror" >&5
|
||||||
|
printf "%s\n" "$ax_cv_check_cflags___Werror" >&6; }
|
||||||
|
if test "x$ax_cv_check_cflags___Werror" = xyes
|
||||||
|
then :
|
||||||
|
CFLAGS="$CFLAGS -Werror"
|
||||||
|
else $as_nop
|
||||||
|
:
|
||||||
|
fi
|
||||||
|
|
||||||
|
ax_add_fortify_3_failed=
|
||||||
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to add -D_FORTIFY_SOURCE=3 to CPPFLAGS" >&5
|
||||||
|
printf %s "checking whether to add -D_FORTIFY_SOURCE=3 to CPPFLAGS... " >&6; }
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
main (void)
|
||||||
|
{
|
||||||
|
|
||||||
|
#ifndef _FORTIFY_SOURCE
|
||||||
|
return 0;
|
||||||
|
#else
|
||||||
|
_FORTIFY_SOURCE_already_defined;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_link "$LINENO"
|
||||||
|
then :
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
|
||||||
|
#define _FORTIFY_SOURCE 3
|
||||||
|
#include <string.h>
|
||||||
|
int main() {
|
||||||
|
char *s = " ";
|
||||||
|
strcpy(s, "x");
|
||||||
|
return strlen(s)-1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_link "$LINENO"
|
||||||
|
then :
|
||||||
|
|
||||||
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
printf "%s\n" "yes" >&6; }
|
||||||
|
CFLAGS=$ac_save_cflags
|
||||||
|
CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=3"
|
||||||
|
|
||||||
|
else $as_nop
|
||||||
|
|
||||||
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
printf "%s\n" "no" >&6; }
|
||||||
|
CFLAGS=$ac_save_cflags
|
||||||
|
ax_add_fortify_3_failed=1
|
||||||
|
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.beam \
|
||||||
|
conftest$ac_exeext conftest.$ac_ext
|
||||||
|
else $as_nop
|
||||||
|
|
||||||
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
printf "%s\n" "no" >&6; }
|
||||||
|
CFLAGS=$ac_save_cflags
|
||||||
|
ax_add_fortify_3_failed=1
|
||||||
|
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.beam \
|
||||||
|
conftest$ac_exeext conftest.$ac_ext
|
||||||
|
if test -n "$ax_add_fortify_3_failed"
|
||||||
|
then
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to add -D_FORTIFY_SOURCE=2 to CPPFLAGS" >&5
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to add -D_FORTIFY_SOURCE=2 to CPPFLAGS" >&5
|
||||||
printf %s "checking whether to add -D_FORTIFY_SOURCE=2 to CPPFLAGS... " >&6; }
|
printf %s "checking whether to add -D_FORTIFY_SOURCE=2 to CPPFLAGS... " >&6; }
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
@ -7873,7 +7979,7 @@ main (void)
|
|||||||
#ifndef _FORTIFY_SOURCE
|
#ifndef _FORTIFY_SOURCE
|
||||||
return 0;
|
return 0;
|
||||||
#else
|
#else
|
||||||
this_is_an_error;
|
_FORTIFY_SOURCE_already_defined;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
@ -7889,8 +7995,8 @@ then :
|
|||||||
|
|
||||||
#define _FORTIFY_SOURCE 2
|
#define _FORTIFY_SOURCE 2
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
int main() {
|
int main(void) {
|
||||||
const char *s = " ";
|
char *s = " ";
|
||||||
strcpy(s, "x");
|
strcpy(s, "x");
|
||||||
return strlen(s)-1;
|
return strlen(s)-1;
|
||||||
}
|
}
|
||||||
@ -7902,24 +8008,28 @@ then :
|
|||||||
|
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
printf "%s\n" "yes" >&6; }
|
printf "%s\n" "yes" >&6; }
|
||||||
|
CFLAGS=$ac_save_cflags
|
||||||
CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
|
CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
|
||||||
|
|
||||||
else $as_nop
|
else $as_nop
|
||||||
|
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
printf "%s\n" "no" >&6; }
|
printf "%s\n" "no" >&6; }
|
||||||
|
CFLAGS=$ac_save_cflags
|
||||||
|
|
||||||
fi
|
fi
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.beam \
|
rm -f core conftest.err conftest.$ac_objext conftest.beam \
|
||||||
conftest$ac_exeext conftest.$ac_ext
|
conftest$ac_exeext conftest.$ac_ext
|
||||||
else $as_nop
|
else $as_nop
|
||||||
|
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
printf "%s\n" "no" >&6; }
|
printf "%s\n" "no" >&6; }
|
||||||
|
CFLAGS=$ac_save_cflags
|
||||||
|
|
||||||
fi
|
fi
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.beam \
|
rm -f core conftest.err conftest.$ac_objext conftest.beam \
|
||||||
conftest$ac_exeext conftest.$ac_ext
|
conftest$ac_exeext conftest.$ac_ext
|
||||||
|
fi
|
||||||
;; #(
|
;; #(
|
||||||
*) :
|
*) :
|
||||||
;;
|
;;
|
||||||
|
@ -127,6 +127,10 @@ am__can_run_installinfo = \
|
|||||||
n|no|NO) false;; \
|
n|no|NO) false;; \
|
||||||
*) (install-info --version) >/dev/null 2>&1;; \
|
*) (install-info --version) >/dev/null 2>&1;; \
|
||||||
esac
|
esac
|
||||||
|
am__extra_recursive_targets = check-valgrind-recursive \
|
||||||
|
check-valgrind-memcheck-recursive \
|
||||||
|
check-valgrind-helgrind-recursive check-valgrind-drd-recursive \
|
||||||
|
check-valgrind-sgcheck-recursive
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
am__DIST_COMMON = $(srcdir)/Makefile.in
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
@ -339,6 +343,11 @@ mostlyclean-libtool:
|
|||||||
|
|
||||||
clean-libtool:
|
clean-libtool:
|
||||||
-rm -rf .libs _libs
|
-rm -rf .libs _libs
|
||||||
|
check-valgrind-local:
|
||||||
|
check-valgrind-memcheck-local:
|
||||||
|
check-valgrind-helgrind-local:
|
||||||
|
check-valgrind-drd-local:
|
||||||
|
check-valgrind-sgcheck-local:
|
||||||
tags TAGS:
|
tags TAGS:
|
||||||
|
|
||||||
ctags CTAGS:
|
ctags CTAGS:
|
||||||
@ -412,6 +421,26 @@ distclean-generic:
|
|||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
check-valgrind: check-valgrind-am
|
||||||
|
|
||||||
|
check-valgrind-am: check-valgrind-local
|
||||||
|
|
||||||
|
check-valgrind-drd: check-valgrind-drd-am
|
||||||
|
|
||||||
|
check-valgrind-drd-am: check-valgrind-drd-local
|
||||||
|
|
||||||
|
check-valgrind-helgrind: check-valgrind-helgrind-am
|
||||||
|
|
||||||
|
check-valgrind-helgrind-am: check-valgrind-helgrind-local
|
||||||
|
|
||||||
|
check-valgrind-memcheck: check-valgrind-memcheck-am
|
||||||
|
|
||||||
|
check-valgrind-memcheck-am: check-valgrind-memcheck-local
|
||||||
|
|
||||||
|
check-valgrind-sgcheck: check-valgrind-sgcheck-am
|
||||||
|
|
||||||
|
check-valgrind-sgcheck-am: check-valgrind-sgcheck-local
|
||||||
|
|
||||||
clean: clean-am
|
clean: clean-am
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||||
@ -480,7 +509,12 @@ uninstall-am:
|
|||||||
|
|
||||||
.MAKE: install-am install-strip
|
.MAKE: install-am install-strip
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
.PHONY: all all-am check check-am check-valgrind-am \
|
||||||
|
check-valgrind-drd-am check-valgrind-drd-local \
|
||||||
|
check-valgrind-helgrind-am check-valgrind-helgrind-local \
|
||||||
|
check-valgrind-local check-valgrind-memcheck-am \
|
||||||
|
check-valgrind-memcheck-local check-valgrind-sgcheck-am \
|
||||||
|
check-valgrind-sgcheck-local clean clean-generic clean-libtool \
|
||||||
cscopelist-am ctags-am distclean distclean-generic \
|
cscopelist-am ctags-am distclean distclean-generic \
|
||||||
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
||||||
install install-am install-data install-data-am install-dvi \
|
install install-am install-data install-data-am install-dvi \
|
||||||
|
@ -127,6 +127,10 @@ am__can_run_installinfo = \
|
|||||||
n|no|NO) false;; \
|
n|no|NO) false;; \
|
||||||
*) (install-info --version) >/dev/null 2>&1;; \
|
*) (install-info --version) >/dev/null 2>&1;; \
|
||||||
esac
|
esac
|
||||||
|
am__extra_recursive_targets = check-valgrind-recursive \
|
||||||
|
check-valgrind-memcheck-recursive \
|
||||||
|
check-valgrind-helgrind-recursive check-valgrind-drd-recursive \
|
||||||
|
check-valgrind-sgcheck-recursive
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
am__DIST_COMMON = $(srcdir)/Makefile.in
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
@ -353,6 +357,11 @@ mostlyclean-libtool:
|
|||||||
|
|
||||||
clean-libtool:
|
clean-libtool:
|
||||||
-rm -rf .libs _libs
|
-rm -rf .libs _libs
|
||||||
|
check-valgrind-local:
|
||||||
|
check-valgrind-memcheck-local:
|
||||||
|
check-valgrind-helgrind-local:
|
||||||
|
check-valgrind-drd-local:
|
||||||
|
check-valgrind-sgcheck-local:
|
||||||
tags TAGS:
|
tags TAGS:
|
||||||
|
|
||||||
ctags CTAGS:
|
ctags CTAGS:
|
||||||
@ -426,6 +435,26 @@ distclean-generic:
|
|||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
check-valgrind: check-valgrind-am
|
||||||
|
|
||||||
|
check-valgrind-am: check-valgrind-local
|
||||||
|
|
||||||
|
check-valgrind-drd: check-valgrind-drd-am
|
||||||
|
|
||||||
|
check-valgrind-drd-am: check-valgrind-drd-local
|
||||||
|
|
||||||
|
check-valgrind-helgrind: check-valgrind-helgrind-am
|
||||||
|
|
||||||
|
check-valgrind-helgrind-am: check-valgrind-helgrind-local
|
||||||
|
|
||||||
|
check-valgrind-memcheck: check-valgrind-memcheck-am
|
||||||
|
|
||||||
|
check-valgrind-memcheck-am: check-valgrind-memcheck-local
|
||||||
|
|
||||||
|
check-valgrind-sgcheck: check-valgrind-sgcheck-am
|
||||||
|
|
||||||
|
check-valgrind-sgcheck-am: check-valgrind-sgcheck-local
|
||||||
|
|
||||||
clean: clean-am
|
clean: clean-am
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||||
@ -494,7 +523,12 @@ uninstall-am:
|
|||||||
|
|
||||||
.MAKE: install-am install-strip
|
.MAKE: install-am install-strip
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
.PHONY: all all-am check check-am check-valgrind-am \
|
||||||
|
check-valgrind-drd-am check-valgrind-drd-local \
|
||||||
|
check-valgrind-helgrind-am check-valgrind-helgrind-local \
|
||||||
|
check-valgrind-local check-valgrind-memcheck-am \
|
||||||
|
check-valgrind-memcheck-local check-valgrind-sgcheck-am \
|
||||||
|
check-valgrind-sgcheck-local clean clean-generic clean-libtool \
|
||||||
cscopelist-am ctags-am distclean distclean-generic \
|
cscopelist-am ctags-am distclean distclean-generic \
|
||||||
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
||||||
install install-am install-data install-data-am install-dvi \
|
install install-am install-data install-data-am install-dvi \
|
||||||
|
@ -127,6 +127,10 @@ am__can_run_installinfo = \
|
|||||||
n|no|NO) false;; \
|
n|no|NO) false;; \
|
||||||
*) (install-info --version) >/dev/null 2>&1;; \
|
*) (install-info --version) >/dev/null 2>&1;; \
|
||||||
esac
|
esac
|
||||||
|
am__extra_recursive_targets = check-valgrind-recursive \
|
||||||
|
check-valgrind-memcheck-recursive \
|
||||||
|
check-valgrind-helgrind-recursive check-valgrind-drd-recursive \
|
||||||
|
check-valgrind-sgcheck-recursive
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
am__DIST_COMMON = $(srcdir)/Makefile.in
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
@ -341,6 +345,11 @@ mostlyclean-libtool:
|
|||||||
|
|
||||||
clean-libtool:
|
clean-libtool:
|
||||||
-rm -rf .libs _libs
|
-rm -rf .libs _libs
|
||||||
|
check-valgrind-local:
|
||||||
|
check-valgrind-memcheck-local:
|
||||||
|
check-valgrind-helgrind-local:
|
||||||
|
check-valgrind-drd-local:
|
||||||
|
check-valgrind-sgcheck-local:
|
||||||
tags TAGS:
|
tags TAGS:
|
||||||
|
|
||||||
ctags CTAGS:
|
ctags CTAGS:
|
||||||
@ -414,6 +423,26 @@ distclean-generic:
|
|||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
check-valgrind: check-valgrind-am
|
||||||
|
|
||||||
|
check-valgrind-am: check-valgrind-local
|
||||||
|
|
||||||
|
check-valgrind-drd: check-valgrind-drd-am
|
||||||
|
|
||||||
|
check-valgrind-drd-am: check-valgrind-drd-local
|
||||||
|
|
||||||
|
check-valgrind-helgrind: check-valgrind-helgrind-am
|
||||||
|
|
||||||
|
check-valgrind-helgrind-am: check-valgrind-helgrind-local
|
||||||
|
|
||||||
|
check-valgrind-memcheck: check-valgrind-memcheck-am
|
||||||
|
|
||||||
|
check-valgrind-memcheck-am: check-valgrind-memcheck-local
|
||||||
|
|
||||||
|
check-valgrind-sgcheck: check-valgrind-sgcheck-am
|
||||||
|
|
||||||
|
check-valgrind-sgcheck-am: check-valgrind-sgcheck-local
|
||||||
|
|
||||||
clean: clean-am
|
clean: clean-am
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||||
@ -482,7 +511,12 @@ uninstall-am:
|
|||||||
|
|
||||||
.MAKE: install-am install-strip
|
.MAKE: install-am install-strip
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
.PHONY: all all-am check check-am check-valgrind-am \
|
||||||
|
check-valgrind-drd-am check-valgrind-drd-local \
|
||||||
|
check-valgrind-helgrind-am check-valgrind-helgrind-local \
|
||||||
|
check-valgrind-local check-valgrind-memcheck-am \
|
||||||
|
check-valgrind-memcheck-local check-valgrind-sgcheck-am \
|
||||||
|
check-valgrind-sgcheck-local clean clean-generic clean-libtool \
|
||||||
cscopelist-am ctags-am distclean distclean-generic \
|
cscopelist-am ctags-am distclean distclean-generic \
|
||||||
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
||||||
install install-am install-data install-data-am install-dvi \
|
install install-am install-data install-data-am install-dvi \
|
||||||
|
@ -143,6 +143,10 @@ am__recursive_targets = \
|
|||||||
$(am__extra_recursive_targets)
|
$(am__extra_recursive_targets)
|
||||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||||
distdir distdir-am
|
distdir distdir-am
|
||||||
|
am__extra_recursive_targets = check-valgrind-recursive \
|
||||||
|
check-valgrind-memcheck-recursive \
|
||||||
|
check-valgrind-helgrind-recursive check-valgrind-drd-recursive \
|
||||||
|
check-valgrind-sgcheck-recursive
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||||
# Read a list of newline-separated strings from the standard input,
|
# Read a list of newline-separated strings from the standard input,
|
||||||
# and print each of them once, without duplicates. Input order is
|
# and print each of them once, without duplicates. Input order is
|
||||||
@ -431,6 +435,11 @@ $(am__recursive_targets):
|
|||||||
if test "$$dot_seen" = "no"; then \
|
if test "$$dot_seen" = "no"; then \
|
||||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||||
fi; test -z "$$fail"
|
fi; test -z "$$fail"
|
||||||
|
check-valgrind-local:
|
||||||
|
check-valgrind-memcheck-local:
|
||||||
|
check-valgrind-helgrind-local:
|
||||||
|
check-valgrind-drd-local:
|
||||||
|
check-valgrind-sgcheck-local:
|
||||||
|
|
||||||
ID: $(am__tagged_files)
|
ID: $(am__tagged_files)
|
||||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||||
@ -589,6 +598,26 @@ distclean-generic:
|
|||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
check-valgrind: check-valgrind-recursive
|
||||||
|
|
||||||
|
check-valgrind-am: check-valgrind-local
|
||||||
|
|
||||||
|
check-valgrind-drd: check-valgrind-drd-recursive
|
||||||
|
|
||||||
|
check-valgrind-drd-am: check-valgrind-drd-local
|
||||||
|
|
||||||
|
check-valgrind-helgrind: check-valgrind-helgrind-recursive
|
||||||
|
|
||||||
|
check-valgrind-helgrind-am: check-valgrind-helgrind-local
|
||||||
|
|
||||||
|
check-valgrind-memcheck: check-valgrind-memcheck-recursive
|
||||||
|
|
||||||
|
check-valgrind-memcheck-am: check-valgrind-memcheck-local
|
||||||
|
|
||||||
|
check-valgrind-sgcheck: check-valgrind-sgcheck-recursive
|
||||||
|
|
||||||
|
check-valgrind-sgcheck-am: check-valgrind-sgcheck-local
|
||||||
|
|
||||||
clean: clean-recursive
|
clean: clean-recursive
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||||
@ -658,10 +687,15 @@ uninstall-am:
|
|||||||
.MAKE: $(am__recursive_targets) install-am install-strip
|
.MAKE: $(am__recursive_targets) install-am install-strip
|
||||||
|
|
||||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
|
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
|
||||||
check-am clean clean-generic clean-libtool cscopelist-am ctags \
|
check-am check-valgrind-am check-valgrind-drd-am \
|
||||||
ctags-am distclean distclean-generic distclean-libtool \
|
check-valgrind-drd-local check-valgrind-helgrind-am \
|
||||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
check-valgrind-helgrind-local check-valgrind-local \
|
||||||
install install-am install-data install-data-am install-dvi \
|
check-valgrind-memcheck-am check-valgrind-memcheck-local \
|
||||||
|
check-valgrind-sgcheck-am check-valgrind-sgcheck-local clean \
|
||||||
|
clean-generic clean-libtool cscopelist-am ctags ctags-am \
|
||||||
|
distclean distclean-generic distclean-libtool distclean-tags \
|
||||||
|
distdir dvi dvi-am html html-am info info-am install \
|
||||||
|
install-am install-data install-data-am install-dvi \
|
||||||
install-dvi-am install-exec install-exec-am install-html \
|
install-dvi-am install-exec install-exec-am install-html \
|
||||||
install-html-am install-info install-info-am install-man \
|
install-html-am install-info install-info-am install-man \
|
||||||
install-pdf install-pdf-am install-ps install-ps-am \
|
install-pdf install-pdf-am install-ps install-ps-am \
|
||||||
|
@ -699,6 +699,10 @@ am__recursive_targets = \
|
|||||||
$(am__extra_recursive_targets)
|
$(am__extra_recursive_targets)
|
||||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||||
distdir distdir-am
|
distdir distdir-am
|
||||||
|
am__extra_recursive_targets = check-valgrind-recursive \
|
||||||
|
check-valgrind-memcheck-recursive \
|
||||||
|
check-valgrind-helgrind-recursive check-valgrind-drd-recursive \
|
||||||
|
check-valgrind-sgcheck-recursive
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||||
# Read a list of newline-separated strings from the standard input,
|
# Read a list of newline-separated strings from the standard input,
|
||||||
# and print each of them once, without duplicates. Input order is
|
# and print each of them once, without duplicates. Input order is
|
||||||
@ -3137,6 +3141,11 @@ $(am__recursive_targets):
|
|||||||
if test "$$dot_seen" = "no"; then \
|
if test "$$dot_seen" = "no"; then \
|
||||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||||
fi; test -z "$$fail"
|
fi; test -z "$$fail"
|
||||||
|
check-valgrind-local:
|
||||||
|
check-valgrind-memcheck-local:
|
||||||
|
check-valgrind-helgrind-local:
|
||||||
|
check-valgrind-drd-local:
|
||||||
|
check-valgrind-sgcheck-local:
|
||||||
|
|
||||||
ID: $(am__tagged_files)
|
ID: $(am__tagged_files)
|
||||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||||
@ -3441,6 +3450,26 @@ distclean-generic:
|
|||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
check-valgrind: check-valgrind-recursive
|
||||||
|
|
||||||
|
check-valgrind-am: check-valgrind-local
|
||||||
|
|
||||||
|
check-valgrind-drd: check-valgrind-drd-recursive
|
||||||
|
|
||||||
|
check-valgrind-drd-am: check-valgrind-drd-local
|
||||||
|
|
||||||
|
check-valgrind-helgrind: check-valgrind-helgrind-recursive
|
||||||
|
|
||||||
|
check-valgrind-helgrind-am: check-valgrind-helgrind-local
|
||||||
|
|
||||||
|
check-valgrind-memcheck: check-valgrind-memcheck-recursive
|
||||||
|
|
||||||
|
check-valgrind-memcheck-am: check-valgrind-memcheck-local
|
||||||
|
|
||||||
|
check-valgrind-sgcheck: check-valgrind-sgcheck-recursive
|
||||||
|
|
||||||
|
check-valgrind-sgcheck-am: check-valgrind-sgcheck-local
|
||||||
|
|
||||||
clean: clean-recursive
|
clean: clean-recursive
|
||||||
|
|
||||||
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
|
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
|
||||||
@ -3729,7 +3758,12 @@ uninstall-am: uninstall-defexecDATA uninstall-libLTLIBRARIES
|
|||||||
.MAKE: $(am__recursive_targets) install-am install-strip
|
.MAKE: $(am__recursive_targets) install-am install-strip
|
||||||
|
|
||||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
||||||
am--depfiles check check-am clean clean-generic \
|
am--depfiles check check-am check-valgrind-am \
|
||||||
|
check-valgrind-drd-am check-valgrind-drd-local \
|
||||||
|
check-valgrind-helgrind-am check-valgrind-helgrind-local \
|
||||||
|
check-valgrind-local check-valgrind-memcheck-am \
|
||||||
|
check-valgrind-memcheck-local check-valgrind-sgcheck-am \
|
||||||
|
check-valgrind-sgcheck-local clean clean-generic \
|
||||||
clean-libLTLIBRARIES clean-libtool clean-noinstLTLIBRARIES \
|
clean-libLTLIBRARIES clean-libtool clean-noinstLTLIBRARIES \
|
||||||
cscopelist-am ctags ctags-am distclean distclean-compile \
|
cscopelist-am ctags ctags-am distclean distclean-compile \
|
||||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
||||||
|
@ -158,6 +158,10 @@ am__uninstall_files_from_dir = { \
|
|||||||
}
|
}
|
||||||
am__installdirs = "$(DESTDIR)$(includedir)" "$(DESTDIR)$(includedir)"
|
am__installdirs = "$(DESTDIR)$(includedir)" "$(DESTDIR)$(includedir)"
|
||||||
HEADERS = $(nobase_include_HEADERS) $(nobase_nodist_include_HEADERS)
|
HEADERS = $(nobase_include_HEADERS) $(nobase_nodist_include_HEADERS)
|
||||||
|
am__extra_recursive_targets = check-valgrind-recursive \
|
||||||
|
check-valgrind-memcheck-recursive \
|
||||||
|
check-valgrind-helgrind-recursive check-valgrind-drd-recursive \
|
||||||
|
check-valgrind-sgcheck-recursive
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||||
# Read a list of newline-separated strings from the standard input,
|
# Read a list of newline-separated strings from the standard input,
|
||||||
# and print each of them once, without duplicates. Input order is
|
# and print each of them once, without duplicates. Input order is
|
||||||
@ -502,6 +506,11 @@ uninstall-nobase_nodist_includeHEADERS:
|
|||||||
@list='$(nobase_nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
@list='$(nobase_nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
||||||
$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
|
$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
|
||||||
dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
|
dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
|
||||||
|
check-valgrind-local:
|
||||||
|
check-valgrind-memcheck-local:
|
||||||
|
check-valgrind-helgrind-local:
|
||||||
|
check-valgrind-drd-local:
|
||||||
|
check-valgrind-sgcheck-local:
|
||||||
|
|
||||||
ID: $(am__tagged_files)
|
ID: $(am__tagged_files)
|
||||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||||
@ -624,6 +633,26 @@ distclean-generic:
|
|||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
check-valgrind: check-valgrind-am
|
||||||
|
|
||||||
|
check-valgrind-am: check-valgrind-local
|
||||||
|
|
||||||
|
check-valgrind-drd: check-valgrind-drd-am
|
||||||
|
|
||||||
|
check-valgrind-drd-am: check-valgrind-drd-local
|
||||||
|
|
||||||
|
check-valgrind-helgrind: check-valgrind-helgrind-am
|
||||||
|
|
||||||
|
check-valgrind-helgrind-am: check-valgrind-helgrind-local
|
||||||
|
|
||||||
|
check-valgrind-memcheck: check-valgrind-memcheck-am
|
||||||
|
|
||||||
|
check-valgrind-memcheck-am: check-valgrind-memcheck-local
|
||||||
|
|
||||||
|
check-valgrind-sgcheck: check-valgrind-sgcheck-am
|
||||||
|
|
||||||
|
check-valgrind-sgcheck-am: check-valgrind-sgcheck-local
|
||||||
|
|
||||||
clean: clean-am
|
clean: clean-am
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||||
@ -694,14 +723,18 @@ uninstall-am: uninstall-nobase_includeHEADERS \
|
|||||||
|
|
||||||
.MAKE: install-am install-strip
|
.MAKE: install-am install-strip
|
||||||
|
|
||||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-valgrind-am \
|
||||||
clean-libtool cscopelist-am ctags ctags-am distclean \
|
check-valgrind-drd-am check-valgrind-drd-local \
|
||||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
check-valgrind-helgrind-am check-valgrind-helgrind-local \
|
||||||
dvi-am html html-am info info-am install install-am \
|
check-valgrind-local check-valgrind-memcheck-am \
|
||||||
install-data install-data-am install-dvi install-dvi-am \
|
check-valgrind-memcheck-local check-valgrind-sgcheck-am \
|
||||||
install-exec install-exec-am install-html install-html-am \
|
check-valgrind-sgcheck-local clean clean-generic clean-libtool \
|
||||||
install-info install-info-am install-man \
|
cscopelist-am ctags ctags-am distclean distclean-generic \
|
||||||
install-nobase_includeHEADERS \
|
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||||
|
html-am info info-am install install-am install-data \
|
||||||
|
install-data-am install-dvi install-dvi-am install-exec \
|
||||||
|
install-exec-am install-html install-html-am install-info \
|
||||||
|
install-info-am install-man install-nobase_includeHEADERS \
|
||||||
install-nobase_nodist_includeHEADERS install-pdf \
|
install-nobase_nodist_includeHEADERS install-pdf \
|
||||||
install-pdf-am install-ps install-ps-am install-strip \
|
install-pdf-am install-ps install-ps-am install-strip \
|
||||||
installcheck installcheck-am installdirs maintainer-clean \
|
installcheck installcheck-am installdirs maintainer-clean \
|
||||||
|
@ -143,6 +143,10 @@ am__recursive_targets = \
|
|||||||
$(am__extra_recursive_targets)
|
$(am__extra_recursive_targets)
|
||||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||||
distdir distdir-am
|
distdir distdir-am
|
||||||
|
am__extra_recursive_targets = check-valgrind-recursive \
|
||||||
|
check-valgrind-memcheck-recursive \
|
||||||
|
check-valgrind-helgrind-recursive check-valgrind-drd-recursive \
|
||||||
|
check-valgrind-sgcheck-recursive
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||||
# Read a list of newline-separated strings from the standard input,
|
# Read a list of newline-separated strings from the standard input,
|
||||||
# and print each of them once, without duplicates. Input order is
|
# and print each of them once, without duplicates. Input order is
|
||||||
@ -434,6 +438,11 @@ $(am__recursive_targets):
|
|||||||
if test "$$dot_seen" = "no"; then \
|
if test "$$dot_seen" = "no"; then \
|
||||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||||
fi; test -z "$$fail"
|
fi; test -z "$$fail"
|
||||||
|
check-valgrind-local:
|
||||||
|
check-valgrind-memcheck-local:
|
||||||
|
check-valgrind-helgrind-local:
|
||||||
|
check-valgrind-drd-local:
|
||||||
|
check-valgrind-sgcheck-local:
|
||||||
|
|
||||||
ID: $(am__tagged_files)
|
ID: $(am__tagged_files)
|
||||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||||
@ -592,6 +601,26 @@ distclean-generic:
|
|||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
check-valgrind: check-valgrind-recursive
|
||||||
|
|
||||||
|
check-valgrind-am: check-valgrind-local
|
||||||
|
|
||||||
|
check-valgrind-drd: check-valgrind-drd-recursive
|
||||||
|
|
||||||
|
check-valgrind-drd-am: check-valgrind-drd-local
|
||||||
|
|
||||||
|
check-valgrind-helgrind: check-valgrind-helgrind-recursive
|
||||||
|
|
||||||
|
check-valgrind-helgrind-am: check-valgrind-helgrind-local
|
||||||
|
|
||||||
|
check-valgrind-memcheck: check-valgrind-memcheck-recursive
|
||||||
|
|
||||||
|
check-valgrind-memcheck-am: check-valgrind-memcheck-local
|
||||||
|
|
||||||
|
check-valgrind-sgcheck: check-valgrind-sgcheck-recursive
|
||||||
|
|
||||||
|
check-valgrind-sgcheck-am: check-valgrind-sgcheck-local
|
||||||
|
|
||||||
clean: clean-recursive
|
clean: clean-recursive
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||||
@ -661,10 +690,15 @@ uninstall-am:
|
|||||||
.MAKE: $(am__recursive_targets) install-am install-strip
|
.MAKE: $(am__recursive_targets) install-am install-strip
|
||||||
|
|
||||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
|
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
|
||||||
check-am clean clean-generic clean-libtool cscopelist-am ctags \
|
check-am check-valgrind-am check-valgrind-drd-am \
|
||||||
ctags-am distclean distclean-generic distclean-libtool \
|
check-valgrind-drd-local check-valgrind-helgrind-am \
|
||||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
check-valgrind-helgrind-local check-valgrind-local \
|
||||||
install install-am install-data install-data-am install-dvi \
|
check-valgrind-memcheck-am check-valgrind-memcheck-local \
|
||||||
|
check-valgrind-sgcheck-am check-valgrind-sgcheck-local clean \
|
||||||
|
clean-generic clean-libtool cscopelist-am ctags ctags-am \
|
||||||
|
distclean distclean-generic distclean-libtool distclean-tags \
|
||||||
|
distdir dvi dvi-am html html-am info info-am install \
|
||||||
|
install-am install-data install-data-am install-dvi \
|
||||||
install-dvi-am install-exec install-exec-am install-html \
|
install-dvi-am install-exec install-exec-am install-html \
|
||||||
install-html-am install-info install-info-am install-man \
|
install-html-am install-info install-info-am install-man \
|
||||||
install-pdf install-pdf-am install-ps install-ps-am \
|
install-pdf install-pdf-am install-ps install-ps-am \
|
||||||
|
@ -506,6 +506,10 @@ am__can_run_installinfo = \
|
|||||||
n|no|NO) false;; \
|
n|no|NO) false;; \
|
||||||
*) (install-info --version) >/dev/null 2>&1;; \
|
*) (install-info --version) >/dev/null 2>&1;; \
|
||||||
esac
|
esac
|
||||||
|
am__extra_recursive_targets = check-valgrind-recursive \
|
||||||
|
check-valgrind-memcheck-recursive \
|
||||||
|
check-valgrind-helgrind-recursive check-valgrind-drd-recursive \
|
||||||
|
check-valgrind-sgcheck-recursive
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||||
# Read a list of newline-separated strings from the standard input,
|
# Read a list of newline-separated strings from the standard input,
|
||||||
# and print each of them once, without duplicates. Input order is
|
# and print each of them once, without duplicates. Input order is
|
||||||
@ -1714,6 +1718,11 @@ mostlyclean-libtool:
|
|||||||
|
|
||||||
clean-libtool:
|
clean-libtool:
|
||||||
-rm -rf .libs _libs
|
-rm -rf .libs _libs
|
||||||
|
check-valgrind-local:
|
||||||
|
check-valgrind-memcheck-local:
|
||||||
|
check-valgrind-helgrind-local:
|
||||||
|
check-valgrind-drd-local:
|
||||||
|
check-valgrind-sgcheck-local:
|
||||||
|
|
||||||
ID: $(am__tagged_files)
|
ID: $(am__tagged_files)
|
||||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||||
@ -2534,6 +2543,26 @@ distclean-generic:
|
|||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
@echo "This command is intended for maintainers to use"
|
@echo "This command is intended for maintainers to use"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
check-valgrind: check-valgrind-am
|
||||||
|
|
||||||
|
check-valgrind-am: check-valgrind-local
|
||||||
|
|
||||||
|
check-valgrind-drd: check-valgrind-drd-am
|
||||||
|
|
||||||
|
check-valgrind-drd-am: check-valgrind-drd-local
|
||||||
|
|
||||||
|
check-valgrind-helgrind: check-valgrind-helgrind-am
|
||||||
|
|
||||||
|
check-valgrind-helgrind-am: check-valgrind-helgrind-local
|
||||||
|
|
||||||
|
check-valgrind-memcheck: check-valgrind-memcheck-am
|
||||||
|
|
||||||
|
check-valgrind-memcheck-am: check-valgrind-memcheck-local
|
||||||
|
|
||||||
|
check-valgrind-sgcheck: check-valgrind-sgcheck-am
|
||||||
|
|
||||||
|
check-valgrind-sgcheck-am: check-valgrind-sgcheck-local
|
||||||
|
|
||||||
clean: clean-am
|
clean: clean-am
|
||||||
|
|
||||||
clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
|
clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
|
||||||
@ -2760,15 +2789,20 @@ uninstall-am:
|
|||||||
.MAKE: check-am install-am install-strip
|
.MAKE: check-am install-am install-strip
|
||||||
|
|
||||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
|
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
|
||||||
check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
|
check-am check-valgrind-am check-valgrind-drd-am \
|
||||||
cscopelist-am ctags ctags-am distclean distclean-compile \
|
check-valgrind-drd-local check-valgrind-helgrind-am \
|
||||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
check-valgrind-helgrind-local check-valgrind-local \
|
||||||
dvi-am html html-am info info-am install install-am \
|
check-valgrind-memcheck-am check-valgrind-memcheck-local \
|
||||||
install-data install-data-am install-dvi install-dvi-am \
|
check-valgrind-sgcheck-am check-valgrind-sgcheck-local clean \
|
||||||
install-exec install-exec-am install-html install-html-am \
|
clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
|
||||||
install-info install-info-am install-man install-pdf \
|
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||||
install-pdf-am install-ps install-ps-am install-strip \
|
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||||
installcheck installcheck-am installdirs maintainer-clean \
|
html-am info info-am install install-am install-data \
|
||||||
|
install-data-am install-dvi install-dvi-am install-exec \
|
||||||
|
install-exec-am install-html install-html-am install-info \
|
||||||
|
install-info-am install-man install-pdf install-pdf-am \
|
||||||
|
install-ps install-ps-am install-strip installcheck \
|
||||||
|
installcheck-am installdirs maintainer-clean \
|
||||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||||
recheck tags tags-am uninstall uninstall-am
|
recheck tags tags-am uninstall uninstall-am
|
||||||
|
Loading…
Reference in New Issue
Block a user