blob: bbd9c8a1848d9fce53f918abf80a93c83179154e [file] [log] [blame]
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001# makefile for libpng.a and libpng14.so on Linux ELF with gcc using MMX
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -06002# assembler code
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -06003# Copyright 2002, 2006 Greg Roelofs and Glenn Randers-Pehrson
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -06004# Copyright 1998-2001 Greg Roelofs
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -06005# Copyright 1996-1997 Andreas Dilger
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06006# For conditions of distribution and use, see copyright notice in png.h
7
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -05008# CAUTION: Do not use this makefile with gcc versions 2.7.2.2 and earlier.
9
Glenn Randers-Pehrson1ea0ff32001-08-07 22:25:59 -050010# WARNING: The assembler code in pnggccrd.c may not be thread safe.
11
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -060012# NOTE: When testing MMX performance on a multitasking system, make sure
13# there are no floating-point programs (e.g., SETI@Home) running in
14# the background! Context switches between MMX and FPU are expensive.
15
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -060016# Library name:
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -050017LIBNAME = libpng14
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -050018PNGMAJ = 14
Glenn Randers-Pehrsona6cc6272009-04-01 14:18:43 -050019PNGMIN = 1.4.0beta53
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -060020PNGVER = $(PNGMAJ).$(PNGMIN)
21
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -060022# Shared library names:
23LIBSO=$(LIBNAME).so
24LIBSOMAJ=$(LIBNAME).so.$(PNGMAJ)
25LIBSOVER=$(LIBNAME).so.$(PNGVER)
26OLDSO=libpng.so
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -060027
28# Utilities:
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060029CC = gcc
30LD = $(CC)
31AR_RC = ar rc
32LN_SF = ln -sf
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -060033MKDIR_P = mkdir -p
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060034RANLIB = ranlib
35RM_F = /bin/rm -f
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060036
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -050037# where "make install" puts libpng14.a, libpng14.so*,
38# libpng14/png.h and libpng14/pngconf.h
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -050039# Prefix must be a full pathname.
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060040prefix=/usr/local
Glenn Randers-Pehrsonad310542006-04-18 05:31:20 -050041exec_prefix=$(prefix)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060042
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -050043# Where the zlib library and include files are located.
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060044#ZLIBLIB=/usr/local/lib
45#ZLIBINC=/usr/local/include
46ZLIBLIB=../zlib
47ZLIBINC=../zlib
48
49ALIGN=
50# for i386:
51#ALIGN=-malign-loops=2 -malign-functions=2
52
53WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow \
54 -Wmissing-declarations -Wtraditional -Wcast-align \
55 -Wstrict-prototypes -Wmissing-prototypes #-Wconversion
56
57# for pgcc version 2.95.1, -O3 is buggy; don't use it.
58
Glenn Randers-Pehrson79084212008-08-04 13:31:41 -050059CFLAGS= -I$(ZLIBINC) -W -Wall \
Glenn Randers-Pehrson4fb046a2002-04-15 09:25:51 -050060 -O3 $(ALIGN) -funroll-loops \
Glenn Randers-Pehrsond56aca72000-11-23 11:51:42 -060061 -fomit-frame-pointer # $(WARNMORE) -g -DPNG_DEBUG=5
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -060062### for gcc 2.95.2 on 686:
Glenn Randers-Pehrson79084212008-08-04 13:31:41 -050063#CFLAGS= -I$(ZLIBINC) -W -Wall -O3 \
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -060064# -mcpu=i686 -malign-double -ffast-math -fstrict-aliasing \
65# $(ALIGN) -funroll-loops -funroll-all-loops -fomit-frame-pointer
66### for gcc 2.7.2.3 on 486 and up:
Glenn Randers-Pehrson79084212008-08-04 13:31:41 -050067#CFLAGS= -I$(ZLIBINC) -W -Wall -O3 \
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -060068# -m486 -malign-double -ffast-math \
69# $(ALIGN) -funroll-loops -funroll-all-loops -fomit-frame-pointer
70
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -050071LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng14 -lz -lm
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -060072LDFLAGS_A=-L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) libpng.a -lz -lm
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060073
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -050074
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060075INCPATH=$(prefix)/include
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060076LIBPATH=$(exec_prefix)/lib
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -050077MANPATH=$(prefix)/man
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060078BINPATH=$(exec_prefix)/bin
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -050079
80# override DESTDIR= on the make install command line to easily support
81# installing into a temporary location. Example:
82#
83# make install DESTDIR=/tmp/build/libpng
84#
85# If you're going to install into a temporary location
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -050086# via DESTDIR, $(DESTDIR)$(prefix) must already exist before
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -050087# you execute make install.
88DESTDIR=
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060089
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -050090DB=$(DESTDIR)$(BINPATH)
91DI=$(DESTDIR)$(INCPATH)
92DL=$(DESTDIR)$(LIBPATH)
93DM=$(DESTDIR)$(MANPATH)
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -050094
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060095OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
96 pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
97 pngwtran.o pngmem.o pngerror.o pngpread.o pnggccrd.o
98
99OBJSDLL = $(OBJS:.o=.pic.o)
100
101.SUFFIXES: .c .o .pic.o
102
103.c.pic.o:
104 $(CC) -c $(CFLAGS) -fPIC -o $@ $*.c
105
Glenn Randers-Pehrson3424ee72006-07-12 13:33:47 -0500106all: libpng.a $(LIBSO) pngtest pngtest-static libpng.pc libpng-config \
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500107 pngconf.h pngdefs.h
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500108
Glenn Randers-Pehrsona7dbcba2007-05-15 16:16:34 -0500109# Use makefile.gcmmx if you want to use the MMX assembler code.
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500110# If you don't need thread safety you can uncomment the define.
111pngdefs.h:
112 echo "/* pngdefs.h was built by makefile.gcmmx */" > pngdefs.h
113 # echo "#define PNG_THREAD_UNSAFE_OK" >> pngdefs.h
Glenn Randers-Pehrson86dc9812006-05-10 07:27:44 -0500114
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500115libpng.a: $(OBJS)
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600116 $(AR_RC) $@ $(OBJS)
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500117 $(RANLIB) $@
118
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500119libpng.pc:
120 cat scripts/libpng.pc.in | sed -e s\!@PREFIX@!$(prefix)! > libpng.pc
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600121
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500122libpng-config:
123 ( cat scripts/libpng-config-head.in; \
124 echo prefix=\"$(prefix)\"; \
Glenn Randers-Pehrson5ff38d32002-09-17 23:38:46 -0500125 echo I_opts=\"-I$(INCPATH)/$(LIBNAME)\"; \
Glenn Randers-Pehrson86dc9812006-05-10 07:27:44 -0500126 echo cppflags=""; \
Glenn Randers-Pehrson5ff38d32002-09-17 23:38:46 -0500127 echo L_opts=\"-L$(LIBPATH)\"; \
128 echo R_opts=\"-Wl,-rpath,$(LIBPATH)\"; \
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500129 echo libs=\"-lpng14 -lz -lm\"; \
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500130 cat scripts/libpng-config-body.in ) > libpng-config
131 chmod +x libpng-config
132
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600133pnggccrd.o: pnggccrd.c png.h pngconf.h
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600134 $(CC) -c $(CFLAGS) -o $@ $*.c
135
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600136pnggccrd.pic.o: pnggccrd.c png.h pngconf.h
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600137 $(CC) -c $(CFLAGS) -fPIC -o $@ pnggccrd.c
138
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600139$(LIBSO): $(LIBSOMAJ)
140 $(LN_SF) $(LIBSOMAJ) $(LIBSO)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600141
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600142$(LIBSOMAJ): $(LIBSOVER)
143 $(LN_SF) $(LIBSOVER) $(LIBSOMAJ)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600144
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600145$(LIBSOVER): $(OBJSDLL)
146 $(CC) -shared -Wl,-soname,$(LIBSOMAJ) \
147 -o $(LIBSOVER) \
Glenn Randers-Pehrson865f4f02002-09-15 20:30:38 -0500148 $(OBJSDLL)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600149
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600150pngtest: pngtest.o $(LIBSO)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600151 $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
152
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500153pngtest-static: pngtest.o libpng.a
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -0600154 $(CC) -o pngtest-static $(CFLAGS) pngtest.o $(LDFLAGS_A)
155
156test: pngtest pngtest-static
157 @echo ""
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600158 @echo " Running pngtest dynamically linked with $(LIBSO):"
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -0600159 @echo ""
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600160 ./pngtest
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -0600161 @echo ""
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600162 @echo " Running pngtest statically linked with libpng.a:"
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -0600163 @echo ""
164 ./pngtest-static
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600165
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500166install-headers: png.h pngconf.h pngdefs.h
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600167 -@if [ ! -d $(DI) ]; then $(MKDIR_P) $(DI); fi
168 -@if [ ! -d $(DI)/$(LIBNAME) ]; then $(MKDIR_P) $(DI)/$(LIBNAME); fi
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500169 cp png.h pngconf.h pngdefs.h $(DI)/$(LIBNAME)
170 chmod 644 $(DI)/$(LIBNAME)/png.h $(DI)/$(LIBNAME)/pngconf.h \
171 $(DI)/$(LIBNAME)/pngdefs.h
172 -@$(RM_F) $(DI)/png.h $(DI)/pngconf.h $(DI)/pngdefs.h
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600173 -@$(RM_F) $(DI)/libpng
174 (cd $(DI); $(LN_SF) $(LIBNAME) libpng; $(LN_SF) $(LIBNAME)/* .)
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600175
176install-static: install-headers libpng.a
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600177 -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500178 cp libpng.a $(DL)/$(LIBNAME).a
179 chmod 644 $(DL)/$(LIBNAME).a
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600180 -@$(RM_F) $(DL)/libpng.a
181 (cd $(DL); $(LN_SF) $(LIBNAME).a libpng.a)
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600182
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -0500183install-shared: install-headers $(LIBSOVER) libpng.pc
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600184 -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600185 -@$(RM_F) $(DL)/$(LIBSOVER)* $(DL)/$(LIBSO)
186 -@$(RM_F) $(DL)/$(LIBSOMAJ)
187 -@$(RM_F) $(DL)/$(OLDSO)
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600188 cp $(LIBSOVER) $(DL)
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600189 chmod 755 $(DL)/$(LIBSOVER)
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500190 (cd $(DL); \
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600191 $(LN_SF) $(LIBSOVER) $(LIBSOMAJ); \
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -0500192 $(LN_SF) $(LIBSOMAJ) $(LIBSO); \
193 $(LN_SF) $(OLDSO) $(LIBSO))
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600194 -@if [ ! -d $(DL)/pkgconfig ]; then $(MKDIR_P) $(DL)/pkgconfig; fi
195 -@$(RM_F) $(DL)/pkgconfig/$(LIBNAME).pc
196 -@$(RM_F) $(DL)/pkgconfig/libpng.pc
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500197 cp libpng.pc $(DL)/pkgconfig/$(LIBNAME).pc
198 chmod 644 $(DL)/pkgconfig/$(LIBNAME).pc
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600199 (cd $(DL)/pkgconfig; $(LN_SF) $(LIBNAME).pc libpng.pc)
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600200
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500201install-man: libpng.3 libpngpf.3 png.5
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600202 -@if [ ! -d $(DM) ]; then $(MKDIR_P) $(DM); fi
203 -@if [ ! -d $(DM)/man3 ]; then $(MKDIR_P) $(DM)/man3; fi
204 -@$(RM_F) $(DM)/man3/libpng.3
205 -@$(RM_F) $(DM)/man3/libpngpf.3
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500206 cp libpng.3 $(DM)/man3
207 cp libpngpf.3 $(DM)/man3
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600208 -@if [ ! -d $(DM)/man5 ]; then $(MKDIR_P) $(DM)/man5; fi
209 -@$(RM_F) $(DM)/man5/png.5
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500210 cp png.5 $(DM)/man5
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500211
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500212install-config: libpng-config
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600213 -@if [ ! -d $(DB) ]; then $(MKDIR_P) $(DB); fi
214 -@$(RM_F) $(DB)/libpng-config
215 -@$(RM_F) $(DB)/$(LIBNAME)-config
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500216 cp libpng-config $(DB)/$(LIBNAME)-config
217 chmod 755 $(DB)/$(LIBNAME)-config
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600218 (cd $(DB); $(LN_SF) $(LIBNAME)-config libpng-config)
Glenn Randers-Pehrson704228f2002-05-02 20:49:40 -0500219
220install: install-static install-shared install-man install-config
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600221
Glenn Randers-Pehrsond020e9d2002-06-28 09:34:00 -0500222# If you installed in $(DESTDIR), test-installed won't work until you
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -0500223# move the library to its final location. Use test-dd to test it
224# before then.
225
226test-dd:
227 echo
228 echo Testing installed dynamic shared library in $(DL).
229 $(CC) -I$(DI) -I$(ZLIBINC) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600230 `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500231 -L$(DL) -L$(ZLIBLIB) -Wl, -rpath,$(DL) -Wl,-rpath,$(ZLIBLIB) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600232 -o pngtestd `$(BINPATH)/$(LIBNAME)-config --ldflags`
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -0500233 ./pngtestd pngtest.png
Glenn Randers-Pehrsond020e9d2002-06-28 09:34:00 -0500234
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500235test-installed:
236 $(CC) -I$(ZLIBINC) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600237 `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
Glenn Randers-Pehrsond020e9d2002-06-28 09:34:00 -0500238 -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600239 -o pngtesti `$(BINPATH)/$(LIBNAME)-config --ldflags`
Glenn Randers-Pehrson2ae022d2002-07-01 22:23:46 -0500240 ./pngtesti pngtest.png
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500241
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600242clean:
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500243 $(RM_F) *.o libpng.a pngtest pngout.png libpng-config pngdefs.h \
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600244 $(LIBSO) $(LIBSOMAJ)* pngtest-static pngtesti \
Glenn Randers-Pehrson51d92502002-08-23 23:07:42 -0500245 libpng.pc
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600246
247DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
248writelock:
249 chmod a-w *.[ch35] $(DOCS) scripts/*
250
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500251png.o png.pic.o: png.h pngconf.h pngdefs.h pngpriv.h png.c
252pngerror.o pngerror.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngerror.c
253pngrio.o pngrio.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngrio.c
254pngwio.o pngwio.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngwio.c
255pngmem.o pngmem.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngmem.c
256pngset.o pngset.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngset.c
257pngget.o pngget.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngget.c
258pngread.o pngread.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngread.c
259pngrtran.o pngrtran.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngrtran.c
260pngrutil.o pngrutil.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngrutil.c
261pngtrans.o pngtrans.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngtrans.c
262pngwrite.o pngwrite.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngwrite.c
263pngwtran.o pngwtran.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngwtran.c
264pngwutil.o pngwutil.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngwutil.c
265pngpread.o pngpread.pic.o: png.h pngconf.h pngdefs.h pngpriv.h pngpread.c
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600266
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500267pngtest.o: png.h pngconf.h pngdefs.h pngtest.c