1
- # Makefile.in generated by automake 1.16.5 from Makefile.am.
1
+ # Makefile.in generated by automake 1.17 from Makefile.am.
2
2
# @configure_input@
3
3
4
- # Copyright (C) 1994-2021 Free Software Foundation, Inc.
4
+ # Copyright (C) 1994-2024 Free Software Foundation, Inc.
5
5
6
6
# This Makefile.in is free software; the Free Software Foundation
7
7
# gives unlimited permission to copy and/or distribute it,
@@ -71,6 +71,8 @@ am__make_running_with_option = \
71
71
test $$has_opt = yes
72
72
am__make_dryrun = (target_option=n; $(am__make_running_with_option ) )
73
73
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 )
74
76
pkgdatadir = $(datadir ) /@PACKAGE@
75
77
pkgincludedir = $(includedir ) /@PACKAGE@
76
78
pkglibdir = $(libdir ) /@PACKAGE@
@@ -122,10 +124,9 @@ am__base_list = \
122
124
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
123
125
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
124
126
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 ) ; }; \
129
130
}
130
131
am__installdirs = "$(DESTDIR )$(bindir ) " "$(DESTDIR )$(aclocaldir ) " \
131
132
"$(DESTDIR )$(awkdir ) "
@@ -193,8 +194,8 @@ distdir = $(PACKAGE)-$(VERSION)
193
194
top_distdir = $(distdir )
194
195
am__remove_distdir = \
195
196
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 ) " \
198
199
|| { sleep 5 && rm -rf "$(distdir ) "; }; \
199
200
else :; fi
200
201
am__post_remove_distdir = $(am__remove_distdir )
@@ -224,14 +225,16 @@ am__relativize = \
224
225
done; \
225
226
reldir="$$dir2"
226
227
DIST_ARCHIVES = $(distdir ) .tar.gz
227
- GZIP_ENV = --best
228
+ GZIP_ENV = -9
228
229
DIST_TARGETS = dist-gzip
229
230
# Exists only to be overridden by the user if desired.
230
231
AM_DISTCHECK_DVI_TARGET = dvi
231
232
distuninstallcheck_listfiles = find . -type f -print
232
233
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles ) \
233
234
| 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
235
238
ACLOCAL = @ACLOCAL@
236
239
AMTAR = @AMTAR@
237
240
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
@@ -281,8 +284,10 @@ abs_srcdir = @abs_srcdir@
281
284
abs_top_builddir = @abs_top_builddir@
282
285
abs_top_srcdir = @abs_top_srcdir@
283
286
am__leading_dot = @am__leading_dot@
287
+ am__rm_f_notfound = @am__rm_f_notfound@
284
288
am__tar = @am__tar@
285
289
am__untar = @am__untar@
290
+ am__xargs_n = @am__xargs_n@
286
291
bindir = @bindir@
287
292
build_alias = @build_alias@
288
293
builddir = @builddir@
@@ -562,7 +567,7 @@ distdir: $(BUILT_SOURCES)
562
567
563
568
distdir-am : $(DISTFILES )
564
569
$(am__remove_distdir )
565
- test -d " $( distdir ) " || mkdir " $( distdir) "
570
+ $( AM_V_at )$( MKDIR_P ) " $( distdir) "
566
571
@srcdirstrip=` echo " $( srcdir) " | sed ' s/[].[^$$\\*]/\\\\&/g' ` ; \
567
572
topsrcdirstrip=` echo " $( top_srcdir) " | sed ' s/[].[^$$\\*]/\\\\&/g' ` ; \
568
573
list=' $(DISTFILES)' ; \
@@ -673,7 +678,7 @@ dist dist-all:
673
678
distcheck : dist
674
679
case ' $(DIST_ARCHIVES)' in \
675
680
* .tar.gz* ) \
676
- eval GZIP= gzip $( GZIP_ENV ) -dc $(distdir ) .tar.gz | $(am__untar ) ;; \
681
+ eval GZIP= gzip -dc $(distdir ) .tar.gz | $(am__untar ) ;; \
677
682
* .tar.bz2* ) \
678
683
bzip2 -dc $(distdir ) .tar.bz2 | $(am__untar ) ;; \
679
684
* .tar.lz* ) \
@@ -683,7 +688,7 @@ distcheck: dist
683
688
* .tar.Z* ) \
684
689
uncompress -c $(distdir ) .tar.Z | $(am__untar ) ;; \
685
690
* .shar.gz* ) \
686
- eval GZIP= gzip $( GZIP_ENV ) -dc $(distdir ) .shar.gz | unshar ;; \
691
+ eval GZIP= gzip -dc $(distdir ) .shar.gz | unshar ;; \
687
692
* .zip* ) \
688
693
unzip $(distdir ) .zip ;; \
689
694
* .tar.zst* ) \
@@ -786,8 +791,8 @@ mostlyclean-generic:
786
791
clean-generic :
787
792
788
793
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 )
791
796
792
797
maintainer-clean-generic :
793
798
@echo " This command is intended for maintainers to use"
@@ -888,3 +893,10 @@ uninstall-am: uninstall-dist_aclocalDATA uninstall-dist_awkDATA \
888
893
# Tell versions [3.59,3.63) of GNU make to not export all variables.
889
894
# Otherwise a system limit (for SysV at least) may be exceeded.
890
895
.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