blob: e502b6c08242900c372dc42ab7877574f5b614d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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
78
79
80
81
82
83
84
85
86
|
## $Id$
## Proxy Makefile.am to build libpng for TeX Live.
##
## Copyright 2016-2020 Karl Berry <tex-live@tug.org>
## Copyright 2009-2015 Peter Breitenlohner <tex-live@tug.org>
##
## This file is free software; the copyright holder
## gives unlimited permission to copy and/or distribute it,
## with or without modifications, as long as this notice is preserved.
## We want to re-distribute the whole libpng source tree.
EXTRA_DIST = $(LIBPNG_TREE)
## Changes applied to the original source tree
EXTRA_DIST += TLpatches
# Files not to be distributed
include $(srcdir)/../../am/dist_hook.am
NEVER_NAMES += $(NEVER_NAMES_SUB)
SUBDIRS = . include
AM_CPPFLAGS = -I$(top_srcdir)/$(LIBPNG_TREE) $(ZLIB_INCLUDES) \
$(LIBPNG_DEFINES)
AM_CFLAGS = $(VISIBILITY_CFLAGS) $(WARNING_CFLAGS)
noinst_LIBRARIES=libpng.a
nodist_libpng_a_SOURCES = \
@LIBPNG_TREE@/png.c \
@LIBPNG_TREE@/pngerror.c \
@LIBPNG_TREE@/pngget.c \
@LIBPNG_TREE@/pngmem.c \
@LIBPNG_TREE@/pngpread.c \
@LIBPNG_TREE@/pngread.c \
@LIBPNG_TREE@/pngrio.c \
@LIBPNG_TREE@/pngrtran.c \
@LIBPNG_TREE@/pngrutil.c \
@LIBPNG_TREE@/pngset.c \
@LIBPNG_TREE@/pngtrans.c \
@LIBPNG_TREE@/pngwio.c \
@LIBPNG_TREE@/pngwrite.c \
@LIBPNG_TREE@/pngwtran.c \
@LIBPNG_TREE@/pngwutil.c
if PNG_ARM_NEON
nodist_libpng_a_SOURCES += @LIBPNG_TREE@/arm/arm_init.c\
@LIBPNG_TREE@/arm/filter_neon.S @LIBPNG_TREE@/arm/filter_neon_intrinsics.c \
@LIBPNG_TREE@/arm/palette_neon_intrinsics.c
endif
if PNG_POWERPC_VSX
nodist_libpng_a_SOURCES += @LIBPNG_TREE@/powerpc/powerpc_init.c\
@LIBPNG_TREE@/powerpc/filter_vsx_intrinsics.c
endif
$(libpng_a_OBJECTS): config.force
## Tests
AM_TESTS_ENVIRONMENT = LIBPNG_TREE=$(LIBPNG_TREE); export LIBPNG_TREE;
if build
TESTS = libpng.test
check_PROGRAMS = pngtest
dist_check_SCRIPTS = libpng.test
endif build
libpng.log: pngtest$(EXEEXT)
CLEANFILES = pngout.png
nodist_pngtest_SOURCES = @LIBPNG_TREE@/pngtest.c
pngtest_LDADD = libpng.a $(ZLIB_LIBS)
## Rebuild zlib
@ZLIB_RULE@
# Reconfig
reconfig_prereq = $(ZLIB_DEPEND)
DISTCLEANFILES =
include $(srcdir)/../../am/reconfig.am
# Rebuild
rebuild_prereq =
rebuild_target = all
include $(srcdir)/../../am/rebuild.am
|