This commit is contained in:
Frank Denis
2025-07-30 12:34:41 +02:00
parent 27efc25c2e
commit 3dea5725a9
12 changed files with 384 additions and 59 deletions
+35 -1
View File
@@ -178,6 +178,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
@@ -551,6 +555,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
@@ -865,6 +874,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
@@ -938,7 +967,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-bzip3 dist-gzip dist-lzip dist-shar \ dist-all dist-bzip2 dist-bzip3 dist-gzip dist-lzip dist-shar \
dist-tarZ dist-xz dist-zip dist-zstd distcheck distclean \ dist-tarZ dist-xz dist-zip dist-zstd distcheck distclean \
Vendored
+17
View File
@@ -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-2025 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-2025 Free Software Foundation, Inc. # Copyright (C) 1996-2025 Free Software Foundation, Inc.
+19 -9
View File
@@ -1,10 +1,10 @@
#! /bin/sh #! /bin/sh
# Configuration validation subroutine script. # Configuration validation subroutine script.
# Copyright 1992-2024 Free Software Foundation, Inc. # Copyright 1992-2025 Free Software Foundation, Inc.
# shellcheck disable=SC2006,SC2268,SC2162 # see below for rationale # shellcheck disable=SC2006,SC2268,SC2162 # see below for rationale
timestamp='2024-05-27' timestamp='2025-07-10'
# This file is free software; you can redistribute it and/or modify it # This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by # under the terms of the GNU General Public License as published by
@@ -76,7 +76,7 @@ Report bugs and patches to <config-patches@gnu.org>."
version="\ version="\
GNU config.sub ($timestamp) GNU config.sub ($timestamp)
Copyright 1992-2024 Free Software Foundation, Inc. Copyright 1992-2025 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -145,6 +145,7 @@ case $1 in
| kfreebsd*-gnu* \ | kfreebsd*-gnu* \
| knetbsd*-gnu* \ | knetbsd*-gnu* \
| kopensolaris*-gnu* \ | kopensolaris*-gnu* \
| ironclad-* \
| linux-* \ | linux-* \
| managarm-* \ | managarm-* \
| netbsd*-eabi* \ | netbsd*-eabi* \
@@ -242,7 +243,6 @@ case $1 in
| rombug \ | rombug \
| semi \ | semi \
| sequent* \ | sequent* \
| siemens \
| sgi* \ | sgi* \
| siemens \ | siemens \
| sim \ | sim \
@@ -261,7 +261,7 @@ case $1 in
basic_machine=$field1-$field2 basic_machine=$field1-$field2
basic_os= basic_os=
;; ;;
zephyr*) tock* | zephyr*)
basic_machine=$field1-unknown basic_machine=$field1-unknown
basic_os=$field2 basic_os=$field2
;; ;;
@@ -1194,7 +1194,7 @@ case $cpu-$vendor in
xscale-* | xscalee[bl]-*) xscale-* | xscalee[bl]-*)
cpu=`echo "$cpu" | sed 's/^xscale/arm/'` cpu=`echo "$cpu" | sed 's/^xscale/arm/'`
;; ;;
arm64-* | aarch64le-*) arm64-* | aarch64le-* | arm64_32-*)
cpu=aarch64 cpu=aarch64
;; ;;
@@ -1321,6 +1321,7 @@ case $cpu-$vendor in
| i960 \ | i960 \
| ia16 \ | ia16 \
| ia64 \ | ia64 \
| intelgt \
| ip2k \ | ip2k \
| iq2000 \ | iq2000 \
| javascript \ | javascript \
@@ -1522,6 +1523,10 @@ EOF
kernel=nto kernel=nto
os=`echo "$basic_os" | sed -e 's|nto|qnx|'` os=`echo "$basic_os" | sed -e 's|nto|qnx|'`
;; ;;
ironclad*)
kernel=ironclad
os=`echo "$basic_os" | sed -e 's|ironclad|mlibc|'`
;;
linux*) linux*)
kernel=linux kernel=linux
os=`echo "$basic_os" | sed -e 's|linux|gnu|'` os=`echo "$basic_os" | sed -e 's|linux|gnu|'`
@@ -1976,6 +1981,7 @@ case $os in
| atheos* \ | atheos* \
| auroraux* \ | auroraux* \
| aux* \ | aux* \
| banan_os* \
| beos* \ | beos* \
| bitrig* \ | bitrig* \
| bme* \ | bme* \
@@ -2022,7 +2028,6 @@ case $os in
| ios* \ | ios* \
| iris* \ | iris* \
| irix* \ | irix* \
| ironclad* \
| isc* \ | isc* \
| its* \ | its* \
| l4re* \ | l4re* \
@@ -2118,6 +2123,7 @@ case $os in
| sysv* \ | sysv* \
| tenex* \ | tenex* \
| tirtos* \ | tirtos* \
| tock* \
| toppers* \ | toppers* \
| tops10* \ | tops10* \
| tops20* \ | tops20* \
@@ -2214,6 +2220,8 @@ case $kernel-$os-$obj in
;; ;;
uclinux-uclibc*- | uclinux-gnu*- ) uclinux-uclibc*- | uclinux-gnu*- )
;; ;;
ironclad-mlibc*-)
;;
managarm-mlibc*- | managarm-kernel*- ) managarm-mlibc*- | managarm-kernel*- )
;; ;;
windows*-msvc*-) windows*-msvc*-)
@@ -2249,6 +2257,8 @@ case $kernel-$os-$obj in
;; ;;
*-eabi*- | *-gnueabi*-) *-eabi*- | *-gnueabi*-)
;; ;;
ios*-simulator- | tvos*-simulator- | watchos*-simulator- )
;;
none--*) none--*)
# None (no kernel, i.e. freestanding / bare metal), # None (no kernel, i.e. freestanding / bare metal),
# can be paired with an machine code file format # can be paired with an machine code file format
@@ -2347,8 +2357,8 @@ echo "$cpu-$vendor${kernel:+-$kernel}${os:+-$os}${obj:+-$obj}"
exit exit
# Local variables: # Local variables:
# eval: (add-hook 'before-save-hook 'time-stamp) # eval: (add-hook 'before-save-hook 'time-stamp nil t)
# time-stamp-start: "timestamp='" # time-stamp-start: "timestamp='"
# time-stamp-format: "%:y-%02m-%02d" # time-stamp-format: "%Y-%02m-%02d"
# time-stamp-end: "'" # time-stamp-end: "'"
# End: # End:
+35 -1
View File
@@ -129,6 +129,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)
@@ -423,6 +427,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:
@@ -497,6 +506,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
@@ -565,7 +594,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 \
Vendored
+13 -20
View File
@@ -1548,7 +1548,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
@@ -7510,12 +7509,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 case e in #( else case e in #(
e) enable_valgrind=no ;; e) enable_valgrind= ;;
esac esac
fi fi
@@ -7914,7 +7916,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),)
@@ -7924,12 +7926,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
@@ -7943,14 +7945,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
@@ -7966,18 +7970,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
@@ -8187,7 +8182,7 @@ then :
#define _FORTIFY_SOURCE 3 #define _FORTIFY_SOURCE 3
#include <string.h> #include <string.h>
int main() { int main(void) {
char *s = " "; char *s = " ";
strcpy(s, "x"); strcpy(s, "x");
return strlen(s)-1; return strlen(s)-1;
@@ -8207,7 +8202,6 @@ else case e in #(
e) e)
{ 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
ax_add_fortify_3_failed=1 ax_add_fortify_3_failed=1
;; ;;
esac esac
@@ -8218,7 +8212,6 @@ else case e in #(
e) e)
{ 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
ax_add_fortify_3_failed=1 ax_add_fortify_3_failed=1
;; ;;
esac esac
+35 -1
View File
@@ -129,6 +129,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)
@@ -344,6 +348,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:
@@ -418,6 +427,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
@@ -486,7 +515,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 \
+35 -1
View File
@@ -129,6 +129,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)
@@ -355,6 +359,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:
@@ -429,6 +438,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
@@ -497,7 +526,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 \
+38 -4
View File
@@ -145,6 +145,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
@@ -436,6 +440,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
@@ -595,6 +604,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
@@ -664,10 +693,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 \
+35 -1
View File
@@ -752,6 +752,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
@@ -3419,6 +3423,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
@@ -3736,6 +3745,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 \
@@ -4050,7 +4079,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 \
+41 -8
View File
@@ -159,6 +159,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
@@ -510,6 +514,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
@@ -633,6 +642,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
@@ -703,14 +732,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 \
+38 -4
View File
@@ -145,6 +145,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
@@ -439,6 +443,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
@@ -598,6 +607,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
@@ -667,10 +696,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 \
+43 -9
View File
@@ -525,6 +525,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
@@ -1763,6 +1767,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
@@ -2630,6 +2639,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 \
@@ -2862,15 +2891,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