Skip to content

Commit 34b5452

Browse files
committed
regen with automake 1.17
1 parent ea0ddd6 commit 34b5452

File tree

7 files changed

+952
-312
lines changed

7 files changed

+952
-312
lines changed

Makefile.in

+27-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Makefile.in generated by automake 1.16.5 from Makefile.am.
1+
# Makefile.in generated by automake 1.17 from Makefile.am.
22
# @configure_input@
33

4-
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
4+
# Copyright (C) 1994-2024 Free Software Foundation, Inc.
55

66
# This Makefile.in is free software; the Free Software Foundation
77
# gives unlimited permission to copy and/or distribute it,
@@ -71,6 +71,8 @@ am__make_running_with_option = \
7171
test $$has_opt = yes
7272
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
7373
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
74+
am__rm_f = rm -f $(am__rm_f_notfound)
75+
am__rm_rf = rm -rf $(am__rm_f_notfound)
7476
pkgdatadir = $(datadir)/@PACKAGE@
7577
pkgincludedir = $(includedir)/@PACKAGE@
7678
pkglibdir = $(libdir)/@PACKAGE@
@@ -122,10 +124,9 @@ am__base_list = \
122124
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
123125
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
124126
am__uninstall_files_from_dir = { \
125-
test -z "$$files" \
126-
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
127-
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
128-
$(am__cd) "$$dir" && rm -f $$files; }; \
127+
{ test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
128+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
129+
$(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \
129130
}
130131
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(aclocaldir)" \
131132
"$(DESTDIR)$(awkdir)"
@@ -193,8 +194,8 @@ distdir = $(PACKAGE)-$(VERSION)
193194
top_distdir = $(distdir)
194195
am__remove_distdir = \
195196
if test -d "$(distdir)"; then \
196-
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
197-
&& rm -rf "$(distdir)" \
197+
find "$(distdir)" -type d ! -perm -700 -exec chmod u+rwx {} ';' \
198+
; rm -rf "$(distdir)" \
198199
|| { sleep 5 && rm -rf "$(distdir)"; }; \
199200
else :; fi
200201
am__post_remove_distdir = $(am__remove_distdir)
@@ -224,14 +225,16 @@ am__relativize = \
224225
done; \
225226
reldir="$$dir2"
226227
DIST_ARCHIVES = $(distdir).tar.gz
227-
GZIP_ENV = --best
228+
GZIP_ENV = -9
228229
DIST_TARGETS = dist-gzip
229230
# Exists only to be overridden by the user if desired.
230231
AM_DISTCHECK_DVI_TARGET = dvi
231232
distuninstallcheck_listfiles = find . -type f -print
232233
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
233234
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
234-
distcleancheck_listfiles = find . -type f -print
235+
distcleancheck_listfiles = \
236+
find . \( -type f -a \! \
237+
\( -name .nfs* -o -name .smb* -o -name .__afs* \) \) -print
235238
ACLOCAL = @ACLOCAL@
236239
AMTAR = @AMTAR@
237240
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
@@ -281,8 +284,10 @@ abs_srcdir = @abs_srcdir@
281284
abs_top_builddir = @abs_top_builddir@
282285
abs_top_srcdir = @abs_top_srcdir@
283286
am__leading_dot = @am__leading_dot@
287+
am__rm_f_notfound = @am__rm_f_notfound@
284288
am__tar = @am__tar@
285289
am__untar = @am__untar@
290+
am__xargs_n = @am__xargs_n@
286291
bindir = @bindir@
287292
build_alias = @build_alias@
288293
builddir = @builddir@
@@ -562,7 +567,7 @@ distdir: $(BUILT_SOURCES)
562567

563568
distdir-am: $(DISTFILES)
564569
$(am__remove_distdir)
565-
test -d "$(distdir)" || mkdir "$(distdir)"
570+
$(AM_V_at)$(MKDIR_P) "$(distdir)"
566571
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
567572
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
568573
list='$(DISTFILES)'; \
@@ -673,7 +678,7 @@ dist dist-all:
673678
distcheck: dist
674679
case '$(DIST_ARCHIVES)' in \
675680
*.tar.gz*) \
676-
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
681+
eval GZIP= gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
677682
*.tar.bz2*) \
678683
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
679684
*.tar.lz*) \
@@ -683,7 +688,7 @@ distcheck: dist
683688
*.tar.Z*) \
684689
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
685690
*.shar.gz*) \
686-
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
691+
eval GZIP= gzip -dc $(distdir).shar.gz | unshar ;;\
687692
*.zip*) \
688693
unzip $(distdir).zip ;;\
689694
*.tar.zst*) \
@@ -786,8 +791,8 @@ mostlyclean-generic:
786791
clean-generic:
787792

788793
distclean-generic:
789-
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
790-
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
794+
-$(am__rm_f) $(CONFIG_CLEAN_FILES)
795+
-test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES)
791796

792797
maintainer-clean-generic:
793798
@echo "This command is intended for maintainers to use"
@@ -888,3 +893,10 @@ uninstall-am: uninstall-dist_aclocalDATA uninstall-dist_awkDATA \
888893
# Tell versions [3.59,3.63) of GNU make to not export all variables.
889894
# Otherwise a system limit (for SysV at least) may be exceeded.
890895
.NOEXPORT:
896+
897+
# Tell GNU make to disable its built-in pattern rules.
898+
%:: %,v
899+
%:: RCS/%,v
900+
%:: RCS/%
901+
%:: s.%
902+
%:: SCCS/s.%

0 commit comments

Comments
 (0)