Skip to content

Commit 7d0d7ac

Browse files
committed
Merge branch 'master' of https://github.com/mm2/Little-CMS
2 parents 1f2a0d2 + bfd4b61 commit 7d0d7ac

33 files changed

Lines changed: 3548 additions & 1660 deletions

Makefile.in

Lines changed: 27 additions & 15 deletions
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,
@@ -74,6 +74,8 @@ am__make_running_with_option = \
7474
test $$has_opt = yes
7575
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
7676
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
77+
am__rm_f = rm -f $(am__rm_f_notfound)
78+
am__rm_rf = rm -rf $(am__rm_f_notfound)
7779
pkgdatadir = $(datadir)/@PACKAGE@
7880
pkgincludedir = $(includedir)/@PACKAGE@
7981
pkglibdir = $(libdir)/@PACKAGE@
@@ -163,10 +165,9 @@ am__base_list = \
163165
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
164166
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
165167
am__uninstall_files_from_dir = { \
166-
test -z "$$files" \
167-
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
168-
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
169-
$(am__cd) "$$dir" && rm -f $$files; }; \
168+
{ test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
169+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
170+
$(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \
170171
}
171172
am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
172173
DATA = $(pkgconfig_DATA)
@@ -206,8 +207,8 @@ distdir = $(PACKAGE)-$(VERSION)
206207
top_distdir = $(distdir)
207208
am__remove_distdir = \
208209
if test -d "$(distdir)"; then \
209-
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
210-
&& rm -rf "$(distdir)" \
210+
find "$(distdir)" -type d ! -perm -700 -exec chmod u+rwx {} ';' \
211+
; rm -rf "$(distdir)" \
211212
|| { sleep 5 && rm -rf "$(distdir)"; }; \
212213
else :; fi
213214
am__post_remove_distdir = $(am__remove_distdir)
@@ -237,14 +238,16 @@ am__relativize = \
237238
done; \
238239
reldir="$$dir2"
239240
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).zip
240-
GZIP_ENV = --best
241+
GZIP_ENV = -9
241242
DIST_TARGETS = dist-gzip dist-zip
242243
# Exists only to be overridden by the user if desired.
243244
AM_DISTCHECK_DVI_TARGET = dvi
244245
distuninstallcheck_listfiles = find . -type f -print
245246
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
246247
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
247-
distcleancheck_listfiles = find . -type f -print
248+
distcleancheck_listfiles = \
249+
find . \( -type f -a \! \
250+
\( -name .nfs* -o -name .smb* -o -name .__afs* \) \) -print
248251
ACLOCAL = @ACLOCAL@
249252
AMTAR = @AMTAR@
250253
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
@@ -346,8 +349,10 @@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
346349
am__include = @am__include@
347350
am__leading_dot = @am__leading_dot@
348351
am__quote = @am__quote@
352+
am__rm_f_notfound = @am__rm_f_notfound@
349353
am__tar = @am__tar@
350354
am__untar = @am__untar@
355+
am__xargs_n = @am__xargs_n@
351356
ax_pthread_config = @ax_pthread_config@
352357
bindir = @bindir@
353358
build = @build@
@@ -583,7 +588,7 @@ distdir: $(BUILT_SOURCES)
583588

584589
distdir-am: $(DISTFILES)
585590
$(am__remove_distdir)
586-
test -d "$(distdir)" || mkdir "$(distdir)"
591+
$(AM_V_at)$(MKDIR_P) "$(distdir)"
587592
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
588593
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
589594
list='$(DISTFILES)'; \
@@ -693,7 +698,7 @@ dist dist-all:
693698
distcheck: dist
694699
case '$(DIST_ARCHIVES)' in \
695700
*.tar.gz*) \
696-
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
701+
eval GZIP= gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
697702
*.tar.bz2*) \
698703
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
699704
*.tar.lz*) \
@@ -703,7 +708,7 @@ distcheck: dist
703708
*.tar.Z*) \
704709
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
705710
*.shar.gz*) \
706-
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
711+
eval GZIP= gzip -dc $(distdir).shar.gz | unshar ;;\
707712
*.zip*) \
708713
unzip $(distdir).zip ;;\
709714
*.tar.zst*) \
@@ -806,8 +811,8 @@ mostlyclean-generic:
806811
clean-generic:
807812

808813
distclean-generic:
809-
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
810-
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
814+
-$(am__rm_f) $(CONFIG_CLEAN_FILES)
815+
-test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES)
811816

812817
maintainer-clean-generic:
813818
@echo "This command is intended for maintainers to use"
@@ -920,3 +925,10 @@ clean-local:
920925
# Tell versions [3.59,3.63) of GNU make to not export all variables.
921926
# Otherwise a system limit (for SysV at least) may be exceeded.
922927
.NOEXPORT:
928+
929+
# Tell GNU make to disable its built-in pattern rules.
930+
%:: %,v
931+
%:: RCS/%,v
932+
%:: RCS/%
933+
%:: s.%
934+
%:: SCCS/s.%

0 commit comments

Comments
 (0)