Skip to content

Latest commit

 

History

History
1119 lines (1020 loc) · 38 KB

Makefile.in

File metadata and controls

1119 lines (1020 loc) · 38 KB
 
Oct 10, 2019
Oct 10, 2019
1
# Makefile.in generated by automake 1.16 from Makefile.am.
Oct 26, 2018
Oct 26, 2018
4
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
Mar 10, 2013
Mar 10, 2013
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This Makefile.in 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.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
# Makefile.am for the SDL sample image loading library and viewer
VPATH = @srcdir@
Oct 26, 2018
Oct 26, 2018
23
24
25
26
27
28
29
30
31
32
33
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
false; \
elif test -n '$(MAKE_HOST)'; then \
true; \
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
true; \
else \
false; \
fi; \
}
Oct 22, 2017
Oct 22, 2017
34
35
36
37
38
39
40
41
42
43
44
45
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
*) echo "am__make_running_with_option: internal error: invalid" \
"target option '$${target_option-}' specified" >&2; \
exit 1;; \
esac; \
has_opt=no; \
sane_makeflags=$$MAKEFLAGS; \
if $(am__is_gnu_make); then \
sane_makeflags=$$MFLAGS; \
else \
Mar 10, 2013
Mar 10, 2013
46
47
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
Oct 22, 2017
Oct 22, 2017
48
49
50
bs=\\; \
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
Mar 10, 2013
Mar 10, 2013
51
esac; \
Oct 22, 2017
Oct 22, 2017
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
fi; \
skip_next=no; \
strip_trailopt () \
{ \
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
}; \
for flg in $$sane_makeflags; do \
test $$skip_next = yes && { skip_next=no; continue; }; \
case $$flg in \
*=*|--*) continue;; \
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
-*l) strip_trailopt 'l'; skip_next=yes;; \
-*l?*) strip_trailopt 'l';; \
-[dEDm]) skip_next=yes;; \
-[JT]) skip_next=yes;; \
esac; \
case $$flg in \
*$$target_option*) has_opt=yes; break;; \
esac; \
done; \
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
78
79
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
Feb 16, 2013
Feb 16, 2013
80
81
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
82
83
84
85
86
87
88
89
90
91
92
93
94
95
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
Jan 23, 2012
Jan 23, 2012
96
@USE_VERSION_RC_FALSE@libSDL2_image_la_DEPENDENCIES = \
97
@USE_VERSION_RC_FALSE@ $(am__DEPENDENCIES_1)
Oct 4, 2019
Oct 4, 2019
98
noinst_PROGRAMS = showimage$(EXEEXT) showanim$(EXEEXT)
99
100
101
102
103
104
105
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude/libtool.m4 \
$(top_srcdir)/acinclude/ltoptions.m4 \
$(top_srcdir)/acinclude/ltsugar.m4 \
$(top_srcdir)/acinclude/ltversion.m4 \
$(top_srcdir)/acinclude/lt~obsolete.m4 \
Jan 23, 2012
Jan 23, 2012
106
$(top_srcdir)/acinclude/pkg.m4 $(top_srcdir)/acinclude/sdl2.m4 \
107
108
109
$(top_srcdir)/configure.in
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
Oct 26, 2018
Oct 26, 2018
110
111
112
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
$(am__configure_deps) $(libSDL2_imageinclude_HEADERS) \
$(am__DIST_COMMON)
113
114
115
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
Jan 23, 2012
Jan 23, 2012
116
CONFIG_CLEAN_FILES = SDL2_image.spec SDL2_image.pc
Feb 16, 2013
Feb 16, 2013
117
CONFIG_CLEAN_VPATH_FILES =
Oct 26, 2018
Oct 26, 2018
118
PROGRAMS = $(noinst_PROGRAMS)
119
120
121
122
123
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
Feb 16, 2013
Feb 16, 2013
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
test -z "$$files" \
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
$(am__cd) "$$dir" && rm -f $$files; }; \
}
146
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \
Jan 23, 2012
Jan 23, 2012
147
"$(DESTDIR)$(libSDL2_imageincludedir)"
148
149
LTLIBRARIES = $(lib_LTLIBRARIES)
am__DEPENDENCIES_1 =
Jan 23, 2012
Jan 23, 2012
150
am__libSDL2_image_la_SOURCES_DIST = IMG.c IMG_bmp.c IMG_gif.c \
Oct 22, 2017
Oct 22, 2017
151
152
IMG_jpg.c IMG_lbm.c IMG_pcx.c IMG_png.c IMG_pnm.c IMG_svg.c \
IMG_tga.c IMG_tif.c IMG_xcf.c IMG_xpm.c IMG_xv.c IMG_webp.c \
Dec 10, 2017
Dec 10, 2017
153
IMG_WIC.c IMG_ImageIO.m miniz.h nanosvg.h nanosvgrast.h
Jan 4, 2012
Jan 4, 2012
154
@USE_IMAGEIO_TRUE@am__objects_1 = IMG_ImageIO.lo
Jan 23, 2012
Jan 23, 2012
155
am_libSDL2_image_la_OBJECTS = IMG.lo IMG_bmp.lo IMG_gif.lo IMG_jpg.lo \
Oct 22, 2017
Oct 22, 2017
156
157
IMG_lbm.lo IMG_pcx.lo IMG_png.lo IMG_pnm.lo IMG_svg.lo \
IMG_tga.lo IMG_tif.lo IMG_xcf.lo IMG_xpm.lo IMG_xv.lo \
Dec 10, 2017
Dec 10, 2017
158
IMG_webp.lo IMG_WIC.lo $(am__objects_1)
Jan 23, 2012
Jan 23, 2012
159
libSDL2_image_la_OBJECTS = $(am_libSDL2_image_la_OBJECTS)
Mar 10, 2013
Mar 10, 2013
160
161
162
163
164
165
166
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 =
libSDL2_image_la_LINK = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(OBJCLD) $(AM_OBJCFLAGS) \
$(OBJCFLAGS) $(libSDL2_image_la_LDFLAGS) $(LDFLAGS) -o $@
Oct 4, 2019
Oct 4, 2019
167
168
169
showanim_SOURCES = showanim.c
showanim_OBJECTS = showanim.$(OBJEXT)
showanim_DEPENDENCIES = libSDL2_image.la
170
171
showimage_SOURCES = showimage.c
showimage_OBJECTS = showimage.$(OBJEXT)
Jan 23, 2012
Jan 23, 2012
172
showimage_DEPENDENCIES = libSDL2_image.la
Mar 10, 2013
Mar 10, 2013
173
174
175
176
177
178
179
180
181
182
183
184
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
185
186
DEFAULT_INCLUDES = -I.@am__isrc@
depcomp = $(SHELL) $(top_srcdir)/depcomp
Oct 26, 2018
Oct 26, 2018
187
188
189
190
191
192
193
194
195
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = ./$(DEPDIR)/IMG.Plo ./$(DEPDIR)/IMG_ImageIO.Plo \
./$(DEPDIR)/IMG_WIC.Plo ./$(DEPDIR)/IMG_bmp.Plo \
./$(DEPDIR)/IMG_gif.Plo ./$(DEPDIR)/IMG_jpg.Plo \
./$(DEPDIR)/IMG_lbm.Plo ./$(DEPDIR)/IMG_pcx.Plo \
./$(DEPDIR)/IMG_png.Plo ./$(DEPDIR)/IMG_pnm.Plo \
./$(DEPDIR)/IMG_svg.Plo ./$(DEPDIR)/IMG_tga.Plo \
./$(DEPDIR)/IMG_tif.Plo ./$(DEPDIR)/IMG_webp.Plo \
./$(DEPDIR)/IMG_xcf.Plo ./$(DEPDIR)/IMG_xpm.Plo \
Oct 4, 2019
Oct 4, 2019
196
197
./$(DEPDIR)/IMG_xv.Plo ./$(DEPDIR)/showanim.Po \
./$(DEPDIR)/showimage.Po
Feb 16, 2013
Feb 16, 2013
198
am__mv = mv -f
199
200
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
Mar 10, 2013
Mar 10, 2013
201
202
203
204
205
206
207
208
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo " CC " $@;
am__v_CC_1 =
Mar 10, 2013
Mar 10, 2013
210
211
212
213
214
215
216
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo " CCLD " $@;
am__v_CCLD_1 =
217
218
OBJCCOMPILE = $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS)
Mar 10, 2013
Mar 10, 2013
219
220
221
222
223
224
225
226
LTOBJCCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(OBJC) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_OBJCFLAGS) $(OBJCFLAGS)
AM_V_OBJC = $(am__v_OBJC_@AM_V@)
am__v_OBJC_ = $(am__v_OBJC_@AM_DEFAULT_V@)
am__v_OBJC_0 = @echo " OBJC " $@;
am__v_OBJC_1 =
Mar 10, 2013
Mar 10, 2013
228
229
230
231
232
233
234
OBJCLINK = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(OBJCLD) $(AM_OBJCFLAGS) $(OBJCFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_OBJCLD = $(am__v_OBJCLD_@AM_V@)
am__v_OBJCLD_ = $(am__v_OBJCLD_@AM_DEFAULT_V@)
am__v_OBJCLD_0 = @echo " OBJCLD " $@;
am__v_OBJCLD_1 =
Oct 4, 2019
Oct 4, 2019
235
236
237
SOURCES = $(libSDL2_image_la_SOURCES) showanim.c showimage.c
DIST_SOURCES = $(am__libSDL2_image_la_SOURCES_DIST) showanim.c \
showimage.c
Mar 10, 2013
Mar 10, 2013
238
239
240
241
242
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
243
DATA = $(pkgconfig_DATA)
Jan 23, 2012
Jan 23, 2012
244
HEADERS = $(libSDL2_imageinclude_HEADERS)
Mar 10, 2013
Mar 10, 2013
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
BEGIN { nonempty = 0; } \
{ items[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique. This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
list='$(am__tagged_files)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
262
263
ETAGS = etags
CTAGS = ctags
Mar 10, 2013
Mar 10, 2013
264
265
CSCOPE = cscope
AM_RECURSIVE_TARGETS = cscope
Oct 26, 2018
Oct 26, 2018
266
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/SDL2_image.pc.in \
Oct 10, 2019
Oct 10, 2019
267
268
$(srcdir)/SDL2_image.spec.in ar-lib compile config.guess \
config.sub depcomp install-sh ltmain.sh missing
269
270
271
272
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
Feb 16, 2013
Feb 16, 2013
273
274
275
276
277
if test -d "$(distdir)"; then \
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -rf "$(distdir)" \
|| { sleep 5 && rm -rf "$(distdir)"; }; \
else :; fi
Mar 10, 2013
Mar 10, 2013
278
am__post_remove_distdir = $(am__remove_distdir)
279
280
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
Mar 10, 2013
Mar 10, 2013
281
DIST_TARGETS = dist-gzip
282
distuninstallcheck_listfiles = find . -type f -print
Feb 16, 2013
Feb 16, 2013
283
284
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
285
286
287
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
Mar 10, 2013
Mar 10, 2013
288
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
AR = @AR@
AS = @AS@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BINARY_AGE = @BINARY_AGE@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GREP = @GREP@
IMG_LIBS = @IMG_LIBS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTERFACE_AGE = @INTERFACE_AGE@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBPNG_CFLAGS = @LIBPNG_CFLAGS@
LIBPNG_LIBS = @LIBPNG_LIBS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIBWEBP_CFLAGS = @LIBWEBP_CFLAGS@
LIBWEBP_LIBS = @LIBWEBP_LIBS@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LT_AGE = @LT_AGE@
LT_CURRENT = @LT_CURRENT@
LT_RELEASE = @LT_RELEASE@
LT_REVISION = @LT_REVISION@
MAJOR_VERSION = @MAJOR_VERSION@
MAKEINFO = @MAKEINFO@
MICRO_VERSION = @MICRO_VERSION@
MINOR_VERSION = @MINOR_VERSION@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJC = @OBJC@
OBJCDEPMODE = @OBJCDEPMODE@
OBJCFLAGS = @OBJCFLAGS@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
Feb 16, 2013
Feb 16, 2013
356
PACKAGE_URL = @PACKAGE_URL@
357
358
359
360
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
RANLIB = @RANLIB@
Aug 1, 2013
Aug 1, 2013
361
SDL2_CONFIG = @SDL2_CONFIG@
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
SDL_CFLAGS = @SDL_CFLAGS@
SDL_LIBS = @SDL_LIBS@
SDL_VERSION = @SDL_VERSION@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
WINDRES = @WINDRES@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
ac_ct_OBJC = @ac_ct_OBJC@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
Jun 19, 2019
Jun 19, 2019
408
lt_ECHO = @lt_ECHO@
409
410
411
412
413
414
415
416
417
418
419
420
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
Feb 16, 2013
Feb 16, 2013
421
top_build_prefix = @top_build_prefix@
422
423
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
Jan 23, 2012
Jan 23, 2012
424
425
426
lib_LTLIBRARIES = libSDL2_image.la
libSDL2_imageincludedir = $(includedir)/SDL2
libSDL2_imageinclude_HEADERS = \
Jan 4, 2012
Jan 4, 2012
429
@USE_IMAGEIO_TRUE@IMAGEIO_SOURCE = IMG_ImageIO.m
Jan 23, 2012
Jan 23, 2012
430
libSDL2_image_la_SOURCES = \
431
432
433
434
435
436
437
438
IMG.c \
IMG_bmp.c \
IMG_gif.c \
IMG_jpg.c \
IMG_lbm.c \
IMG_pcx.c \
IMG_png.c \
IMG_pnm.c \
Oct 22, 2017
Oct 22, 2017
439
IMG_svg.c \
440
441
442
443
444
IMG_tga.c \
IMG_tif.c \
IMG_xcf.c \
IMG_xpm.c \
IMG_xv.c \
Jan 4, 2012
Jan 4, 2012
445
IMG_webp.c \
Dec 10, 2017
Dec 10, 2017
446
IMG_WIC.c \
Jun 6, 2013
Jun 6, 2013
447
$(IMAGEIO_SOURCE) \
Nov 5, 2017
Nov 5, 2017
448
449
450
miniz.h \
nanosvg.h \
nanosvgrast.h
451
452
453
EXTRA_DIST = \
Android.mk \
Feb 18, 2013
Feb 18, 2013
454
debian \
Jun 7, 2013
Jun 7, 2013
455
external \
456
457
458
version.rc \
VisualC \
VisualCE \
Oct 31, 2018
Oct 31, 2018
459
VisualC-WinRT \
Jan 6, 2012
Jan 6, 2012
461
Xcode-iOS \
Jun 7, 2013
Jun 7, 2013
463
$(srcdir)/*.m \
Jan 23, 2012
Jan 23, 2012
464
SDL2_image.spec \
May 27, 2013
May 27, 2013
466
autogen.sh \
May 27, 2013
May 27, 2013
467
$(srcdir)/*.txt
Jan 23, 2012
Jan 23, 2012
469
@USE_VERSION_RC_FALSE@libSDL2_image_la_LDFLAGS = \
470
471
472
473
@USE_VERSION_RC_FALSE@ -no-undefined \
@USE_VERSION_RC_FALSE@ -release $(LT_RELEASE) \
@USE_VERSION_RC_FALSE@ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
Jan 23, 2012
Jan 23, 2012
474
@USE_VERSION_RC_TRUE@libSDL2_image_la_LDFLAGS = \
475
476
477
478
@USE_VERSION_RC_TRUE@ -no-undefined \
@USE_VERSION_RC_TRUE@ -release $(LT_RELEASE) \
@USE_VERSION_RC_TRUE@ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -Wl,version.o
Jan 23, 2012
Jan 23, 2012
479
480
481
@USE_VERSION_RC_FALSE@libSDL2_image_la_LIBADD = $(IMG_LIBS)
@USE_VERSION_RC_TRUE@libSDL2_image_la_LIBADD = $(IMG_LIBS)
@USE_VERSION_RC_TRUE@libSDL2_image_la_DEPENDENCIES = version.o
482
pkgconfigdir = $(libdir)/pkgconfig
Jan 23, 2012
Jan 23, 2012
483
484
pkgconfig_DATA = SDL2_image.pc
showimage_LDADD = libSDL2_image.la
Oct 4, 2019
Oct 4, 2019
485
showanim_LDADD = libSDL2_image.la
486
487
488
489
all: all-am
.SUFFIXES:
.SUFFIXES: .c .lo .m .o .obj
Feb 16, 2013
Feb 16, 2013
490
am--refresh: Makefile
491
492
493
494
495
@:
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
Feb 16, 2013
Feb 16, 2013
496
497
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
498
499
500
501
&& exit 0; \
exit 1;; \
esac; \
done; \
Feb 16, 2013
Feb 16, 2013
502
503
504
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign Makefile
505
506
507
508
509
510
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
Oct 26, 2018
Oct 26, 2018
511
512
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
513
514
515
516
517
518
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(top_srcdir)/configure: $(am__configure_deps)
Feb 16, 2013
Feb 16, 2013
519
$(am__cd) $(srcdir) && $(AUTOCONF)
520
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
Feb 16, 2013
Feb 16, 2013
521
522
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):
Jan 23, 2012
Jan 23, 2012
523
SDL2_image.spec: $(top_builddir)/config.status $(srcdir)/SDL2_image.spec.in
524
cd $(top_builddir) && $(SHELL) ./config.status $@
Jan 23, 2012
Jan 23, 2012
525
SDL2_image.pc: $(top_builddir)/config.status $(srcdir)/SDL2_image.pc.in
526
cd $(top_builddir) && $(SHELL) ./config.status $@
Mar 10, 2013
Mar 10, 2013
527
Oct 26, 2018
Oct 26, 2018
528
529
530
531
532
533
534
535
536
clean-noinstPROGRAMS:
@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
537
538
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
@$(NORMAL_INSTALL)
Feb 16, 2013
Feb 16, 2013
539
540
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
list2=; for p in $$list; do \
541
if test -f $$p; then \
Feb 16, 2013
Feb 16, 2013
542
list2="$$list2 $$p"; \
Feb 16, 2013
Feb 16, 2013
544
545
done; \
test -z "$$list2" || { \
Mar 10, 2013
Mar 10, 2013
546
547
echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
Feb 16, 2013
Feb 16, 2013
548
549
550
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
}
551
552
553
uninstall-libLTLIBRARIES:
@$(NORMAL_UNINSTALL)
Feb 16, 2013
Feb 16, 2013
554
555
556
557
558
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
for p in $$list; do \
$(am__strip_dir) \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
559
560
561
562
done
clean-libLTLIBRARIES:
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
Mar 10, 2013
Mar 10, 2013
563
564
565
566
567
568
569
570
@list='$(lib_LTLIBRARIES)'; \
locs=`for p in $$list; do echo $$p; done | \
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
sort -u`; \
test -z "$$locs" || { \
echo rm -f $${locs}; \
rm -f $${locs}; \
}
Oct 22, 2017
Oct 22, 2017
571
Feb 16, 2013
Feb 16, 2013
572
libSDL2_image.la: $(libSDL2_image_la_OBJECTS) $(libSDL2_image_la_DEPENDENCIES) $(EXTRA_libSDL2_image_la_DEPENDENCIES)
Mar 10, 2013
Mar 10, 2013
573
$(AM_V_OBJCLD)$(libSDL2_image_la_LINK) -rpath $(libdir) $(libSDL2_image_la_OBJECTS) $(libSDL2_image_la_LIBADD) $(LIBS)
Oct 4, 2019
Oct 4, 2019
575
576
577
578
showanim$(EXEEXT): $(showanim_OBJECTS) $(showanim_DEPENDENCIES) $(EXTRA_showanim_DEPENDENCIES)
@rm -f showanim$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(showanim_OBJECTS) $(showanim_LDADD) $(LIBS)
Feb 16, 2013
Feb 16, 2013
579
showimage$(EXEEXT): $(showimage_OBJECTS) $(showimage_DEPENDENCIES) $(EXTRA_showimage_DEPENDENCIES)
580
@rm -f showimage$(EXEEXT)
Mar 10, 2013
Mar 10, 2013
581
$(AM_V_CCLD)$(LINK) $(showimage_OBJECTS) $(showimage_LDADD) $(LIBS)
582
583
584
585
586
587
588
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
Oct 26, 2018
Oct 26, 2018
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_ImageIO.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_WIC.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_bmp.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_gif.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_jpg.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_lbm.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_pcx.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_png.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_pnm.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_svg.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_tga.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_tif.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_webp.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_xcf.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_xpm.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMG_xv.Plo@am__quote@ # am--include-marker
Oct 4, 2019
Oct 4, 2019
606
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/showanim.Po@am__quote@ # am--include-marker
Oct 26, 2018
Oct 26, 2018
607
608
609
610
611
612
613
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/showimage.Po@am__quote@ # am--include-marker
$(am__depfiles_remade):
@$(MKDIR_P) $(@D)
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
am--depfiles: $(am__depfiles_remade)
Mar 10, 2013
Mar 10, 2013
616
617
618
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
619
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Oct 22, 2017
Oct 22, 2017
620
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
Mar 10, 2013
Mar 10, 2013
623
624
625
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
626
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Oct 22, 2017
Oct 22, 2017
627
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
Mar 10, 2013
Mar 10, 2013
630
631
632
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
633
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Mar 10, 2013
Mar 10, 2013
634
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
Mar 10, 2013
Mar 10, 2013
637
638
639
@am__fastdepOBJC_TRUE@ $(AM_V_OBJC)$(OBJCCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepOBJC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ $(AM_V_OBJC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
640
@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Mar 10, 2013
Mar 10, 2013
641
@am__fastdepOBJC_FALSE@ $(AM_V_OBJC@am__nodep@)$(OBJCCOMPILE) -c -o $@ $<
Mar 10, 2013
Mar 10, 2013
644
645
646
@am__fastdepOBJC_TRUE@ $(AM_V_OBJC)$(OBJCCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepOBJC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ $(AM_V_OBJC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
647
@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Mar 10, 2013
Mar 10, 2013
648
@am__fastdepOBJC_FALSE@ $(AM_V_OBJC@am__nodep@)$(OBJCCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
Mar 10, 2013
Mar 10, 2013
651
652
653
@am__fastdepOBJC_TRUE@ $(AM_V_OBJC)$(LTOBJCCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepOBJC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ $(AM_V_OBJC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
654
@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Mar 10, 2013
Mar 10, 2013
655
@am__fastdepOBJC_FALSE@ $(AM_V_OBJC@am__nodep@)$(LTOBJCCOMPILE) -c -o $@ $<
656
657
658
659
660
661
662
663
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
distclean-libtool:
Feb 16, 2013
Feb 16, 2013
664
-rm -f libtool config.lt
665
666
install-pkgconfigDATA: $(pkgconfig_DATA)
@$(NORMAL_INSTALL)
Feb 16, 2013
Feb 16, 2013
667
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
Mar 10, 2013
Mar 10, 2013
668
669
670
671
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
fi; \
Feb 16, 2013
Feb 16, 2013
672
for p in $$list; do \
673
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
Feb 16, 2013
Feb 16, 2013
674
675
676
677
678
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
679
680
681
682
done
uninstall-pkgconfigDATA:
@$(NORMAL_UNINSTALL)
Feb 16, 2013
Feb 16, 2013
683
684
685
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
Jan 23, 2012
Jan 23, 2012
686
install-libSDL2_imageincludeHEADERS: $(libSDL2_imageinclude_HEADERS)
Feb 16, 2013
Feb 16, 2013
688
@list='$(libSDL2_imageinclude_HEADERS)'; test -n "$(libSDL2_imageincludedir)" || list=; \
Mar 10, 2013
Mar 10, 2013
689
690
691
692
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(libSDL2_imageincludedir)'"; \
$(MKDIR_P) "$(DESTDIR)$(libSDL2_imageincludedir)" || exit 1; \
fi; \
Feb 16, 2013
Feb 16, 2013
693
for p in $$list; do \
694
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
Feb 16, 2013
Feb 16, 2013
695
696
697
698
699
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libSDL2_imageincludedir)'"; \
$(INSTALL_HEADER) $$files "$(DESTDIR)$(libSDL2_imageincludedir)" || exit $$?; \
Jan 23, 2012
Jan 23, 2012
702
uninstall-libSDL2_imageincludeHEADERS:
Feb 16, 2013
Feb 16, 2013
704
705
706
@list='$(libSDL2_imageinclude_HEADERS)'; test -n "$(libSDL2_imageincludedir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(libSDL2_imageincludedir)'; $(am__uninstall_files_from_dir)
Mar 10, 2013
Mar 10, 2013
708
709
710
711
712
713
ID: $(am__tagged_files)
$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
Feb 16, 2013
Feb 16, 2013
714
set x; \
Mar 10, 2013
Mar 10, 2013
716
$(am__define_uniq_tagged_files); \
Feb 16, 2013
Feb 16, 2013
717
718
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
719
test -n "$$unique" || unique=$$empty_fix; \
Feb 16, 2013
Feb 16, 2013
720
721
722
723
724
725
726
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
Mar 10, 2013
Mar 10, 2013
728
729
730
731
732
ctags: ctags-am
CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
$(am__define_uniq_tagged_files); \
Feb 16, 2013
Feb 16, 2013
733
test -z "$(CTAGS_ARGS)$$unique" \
734
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
Feb 16, 2013
Feb 16, 2013
735
$$unique
736
737
738
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
Feb 16, 2013
Feb 16, 2013
739
740
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
Mar 10, 2013
Mar 10, 2013
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
cscope: cscope.files
test ! -s cscope.files \
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
clean-cscope:
-rm -f cscope.files
cscope.files: clean-cscope cscopelist
cscopelist: cscopelist-am
cscopelist-am: $(am__tagged_files)
list='$(am__tagged_files)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
762
763
764
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
Mar 10, 2013
Mar 10, 2013
765
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
Oct 26, 2018
Oct 26, 2018
767
768
769
770
distdir: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) distdir-am
distdir-am: $(DISTFILES)
Feb 16, 2013
Feb 16, 2013
772
test -d "$(distdir)" || mkdir "$(distdir)"
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
Feb 16, 2013
Feb 16, 2013
788
789
790
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
791
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
Feb 16, 2013
Feb 16, 2013
792
793
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
Feb 16, 2013
Feb 16, 2013
795
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
Feb 16, 2013
Feb 16, 2013
797
798
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
799
800
801
|| exit 1; \
fi; \
done
Feb 16, 2013
Feb 16, 2013
802
803
804
-test -n "$(am__skip_mode_fix)" \
|| find "$(distdir)" -type d ! -perm -755 \
-exec chmod u+rwx,go+rx {} \; -o \
805
806
807
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
Feb 16, 2013
Feb 16, 2013
808
|| chmod -R a+r "$(distdir)"
Oct 26, 2018
Oct 26, 2018
810
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
Mar 10, 2013
Mar 10, 2013
811
$(am__post_remove_distdir)
812
813
dist-bzip2: distdir
Feb 16, 2013
Feb 16, 2013
814
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
Mar 10, 2013
Mar 10, 2013
815
$(am__post_remove_distdir)
Feb 16, 2013
Feb 16, 2013
816
817
818
dist-lzip: distdir
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
Mar 10, 2013
Mar 10, 2013
819
$(am__post_remove_distdir)
Feb 16, 2013
Feb 16, 2013
820
821
822
dist-xz: distdir
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
Mar 10, 2013
Mar 10, 2013
823
$(am__post_remove_distdir)
Oct 26, 2018
Oct 26, 2018
826
827
@echo WARNING: "Support for distribution archives compressed with" \
"legacy program 'compress' is deprecated." >&2
Oct 22, 2017
Oct 22, 2017
828
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
829
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
Mar 10, 2013
Mar 10, 2013
830
$(am__post_remove_distdir)
Oct 26, 2018
Oct 26, 2018
833
834
@echo WARNING: "Support for shar distribution archives is" \
"deprecated." >&2
Oct 22, 2017
Oct 22, 2017
835
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
Oct 26, 2018
Oct 26, 2018
836
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
Mar 10, 2013
Mar 10, 2013
837
$(am__post_remove_distdir)
838
839
840
841
dist-zip: distdir
-rm -f $(distdir).zip
zip -rq $(distdir).zip $(distdir)
Mar 10, 2013
Mar 10, 2013
842
$(am__post_remove_distdir)
Mar 10, 2013
Mar 10, 2013
844
845
846
dist dist-all:
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
$(am__post_remove_distdir)
847
848
849
850
851
852
853
# This target untars the dist file and tries a VPATH configuration. Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
case '$(DIST_ARCHIVES)' in \
*.tar.gz*) \
Oct 26, 2018
Oct 26, 2018
854
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
Feb 16, 2013
Feb 16, 2013
856
857
858
859
860
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lz*) \
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
*.tar.xz*) \
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
861
862
863
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
Oct 26, 2018
Oct 26, 2018
864
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
865
866
867
*.zip*) \
unzip $(distdir).zip ;;\
esac
Mar 10, 2013
Mar 10, 2013
868
869
chmod -R a-w $(distdir)
chmod u+w $(distdir)
Oct 26, 2018
Oct 26, 2018
870
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
Feb 16, 2013
Feb 16, 2013
872
test -d $(distdir)/_build || exit 0; \
873
874
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
Feb 16, 2013
Feb 16, 2013
875
&& am__cwd=`pwd` \
Oct 26, 2018
Oct 26, 2018
876
877
&& $(am__cd) $(distdir)/_build/sub \
&& ../../configure \
Feb 16, 2013
Feb 16, 2013
878
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
879
$(DISTCHECK_CONFIGURE_FLAGS) \
Oct 26, 2018
Oct 26, 2018
880
--srcdir=../.. --prefix="$$dc_install_base" \
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
&& $(MAKE) $(AM_MAKEFLAGS) \
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
&& $(MAKE) $(AM_MAKEFLAGS) check \
&& $(MAKE) $(AM_MAKEFLAGS) install \
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
distuninstallcheck \
&& chmod -R a-w "$$dc_install_base" \
&& ({ \
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
} || { rm -rf "$$dc_destdir"; exit 1; }) \
&& rm -rf "$$dc_destdir" \
&& $(MAKE) $(AM_MAKEFLAGS) dist \
&& rm -rf $(DIST_ARCHIVES) \
Feb 16, 2013
Feb 16, 2013
900
901
902
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
&& cd "$$am__cwd" \
|| exit 1
Mar 10, 2013
Mar 10, 2013
903
$(am__post_remove_distdir)
904
905
906
907
@(echo "$(distdir) archives ready for distribution: "; \
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
distuninstallcheck:
Feb 16, 2013
Feb 16, 2013
908
909
910
911
912
913
914
915
916
917
@test -n '$(distuninstallcheck_dir)' || { \
echo 'ERROR: trying to run $@ with an empty' \
'$$(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
$(am__cd) '$(distuninstallcheck_dir)' || { \
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
|| { echo "ERROR: files left after uninstall:" ; \
if test -n "$(DESTDIR)"; then \
echo " (check DESTDIR support)"; \
fi ; \
$(distuninstallcheck_listfiles) ; \
exit 1; } >&2
distcleancheck: distclean
@if test '$(srcdir)' = . ; then \
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
exit 1 ; \
fi
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|| { echo "ERROR: files left in build directory after distclean:" ; \
$(distcleancheck_listfiles) ; \
exit 1; } >&2
check-am: all-am
check: check-am
Oct 26, 2018
Oct 26, 2018
935
all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(DATA) $(HEADERS)
Jan 23, 2012
Jan 23, 2012
937
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(libSDL2_imageincludedir)"; do \
938
939
940
941
942
943
944
945
946
947
948
949
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
Feb 16, 2013
Feb 16, 2013
950
951
952
953
954
955
956
957
958
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
959
960
961
962
963
964
mostlyclean-generic:
clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
Feb 16, 2013
Feb 16, 2013
965
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
966
967
968
969
970
971
972
973
974
975
976
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-am
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
clean-noinstPROGRAMS mostlyclean-am
distclean: distclean-am
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
Oct 26, 2018
Oct 26, 2018
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
-rm -f ./$(DEPDIR)/IMG.Plo
-rm -f ./$(DEPDIR)/IMG_ImageIO.Plo
-rm -f ./$(DEPDIR)/IMG_WIC.Plo
-rm -f ./$(DEPDIR)/IMG_bmp.Plo
-rm -f ./$(DEPDIR)/IMG_gif.Plo
-rm -f ./$(DEPDIR)/IMG_jpg.Plo
-rm -f ./$(DEPDIR)/IMG_lbm.Plo
-rm -f ./$(DEPDIR)/IMG_pcx.Plo
-rm -f ./$(DEPDIR)/IMG_png.Plo
-rm -f ./$(DEPDIR)/IMG_pnm.Plo
-rm -f ./$(DEPDIR)/IMG_svg.Plo
-rm -f ./$(DEPDIR)/IMG_tga.Plo
-rm -f ./$(DEPDIR)/IMG_tif.Plo
-rm -f ./$(DEPDIR)/IMG_webp.Plo
-rm -f ./$(DEPDIR)/IMG_xcf.Plo
-rm -f ./$(DEPDIR)/IMG_xpm.Plo
-rm -f ./$(DEPDIR)/IMG_xv.Plo
Oct 4, 2019
Oct 4, 2019
994
-rm -f ./$(DEPDIR)/showanim.Po
Oct 26, 2018
Oct 26, 2018
995
-rm -f ./$(DEPDIR)/showimage.Po
996
997
998
999
1000
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-libtool distclean-tags
dvi: dvi-am