blob: 1ecfd1af424844991cc7e298c271ab6feea5c44b [file] [log] [blame]
Glenn Randers-Pehrson7455cbf2011-11-24 14:40:36 -06001# makefile for libpng.a and libpng16.so on Linux ELF with gcc
Glenn Randers-Pehrson5af03072014-01-20 12:36:30 -06002# Copyright (C) 1998, 1999, 2002, 2006, 2008, 2010-2014 Greg Roelofs and
Glenn Randers-Pehrson glennrp@comcast.net7ecf7bd2009-05-02 15:36:08 -05003# Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05004# Copyright (C) 1996, 1997 Andreas Dilger
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -05005#
Glenn Randers-Pehrsonbfbf8652009-06-26 21:46:52 -05006# This code is released under the libpng license.
Glenn Randers-Pehrsonc332bbc2009-06-25 13:43:50 -05007# For conditions of distribution and use, see the disclaimer
Glenn Randers-Pehrson037023b2009-06-24 10:27:36 -05008# and license in png.h
Guy Schalnat4ee97b01996-01-16 01:51:56 -06009
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -060010# Library name:
Glenn Randers-Pehrson7455cbf2011-11-24 14:40:36 -060011LIBNAME = libpng16
12PNGMAJ = 16
Glenn Randers-Pehrson56e93072014-10-22 19:59:42 -050013RELEASE = 15
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -060014
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -060015# Shared library names:
16LIBSO=$(LIBNAME).so
17LIBSOMAJ=$(LIBNAME).so.$(PNGMAJ)
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -060018LIBSOREL=$(LIBSOMAJ).$(RELEASE)
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -060019OLDSO=libpng.so
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -060020
21# Utilities:
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060022AR_RC=ar rc
Guy Schalnat4ee97b01996-01-16 01:51:56 -060023CC=gcc
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060024MKDIR_P=mkdir -p
25LN_SF=ln -sf
26RANLIB=ranlib
Cosmin Truta82200da2014-03-22 09:29:59 -050027CP=cp
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060028RM_F=/bin/rm -f
Andreas Dilger47a0c421997-05-16 02:46:07 -050029
Glenn Randers-Pehrson7455cbf2011-11-24 14:40:36 -060030# where "make install" puts libpng16.a, libpng16.so*,
Glenn Randers-Pehrson0b3634b2011-12-17 09:57:00 -060031# libpng16/png.h, libpng16/pngconf.h, and libpng16/pnglibconf.h
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -050032# Prefix must be a full pathname.
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -060033prefix=/usr/local
Glenn Randers-Pehrsonad310542006-04-18 05:31:20 -050034exec_prefix=$(prefix)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -060035
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -050036# Where the zlib library and include files are located.
Andreas Dilger47a0c421997-05-16 02:46:07 -050037#ZLIBLIB=/usr/local/lib
38#ZLIBINC=/usr/local/include
39ZLIBLIB=../zlib
40ZLIBINC=../zlib
41
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -050042ALIGN=
Glenn Randers-Pehrsonf8b008c1999-09-18 10:54:36 -050043# for i386:
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -050044#ALIGN=-malign-loops=2 -malign-functions=2
45
Andreas Dilger47a0c421997-05-16 02:46:07 -050046WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow \
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050047 -Wmissing-declarations -Wtraditional -Wcast-align \
48 -Wstrict-prototypes -Wmissing-prototypes #-Wconversion
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -050049
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -050050# for pgcc version 2.95.1, -O3 is buggy; don't use it.
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -050051
Glenn Randers-Pehrson42503282014-01-12 10:44:01 -060052CPPFLAGS=-I$(ZLIBINC) # -DPNG_DEBUG=5
53CFLAGS= -W -Wall -O3 -funroll-loops \
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050054 $(ALIGN) # $(WARNMORE) -g -DPNG_DEBUG=5
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -060055
Glenn Randers-Pehrson7455cbf2011-11-24 14:40:36 -060056LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng16 -lz -lm
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -060057LDFLAGS_A=-L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) libpng.a -lz -lm
Guy Schalnat4ee97b01996-01-16 01:51:56 -060058
Andreas Dilger47a0c421997-05-16 02:46:07 -050059INCPATH=$(prefix)/include
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060060LIBPATH=$(exec_prefix)/lib
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -050061MANPATH=$(prefix)/man
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060062BINPATH=$(exec_prefix)/bin
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -050063
64# override DESTDIR= on the make install command line to easily support
65# installing into a temporary location. Example:
66#
67# make install DESTDIR=/tmp/build/libpng
68#
69# If you're going to install into a temporary location
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -050070# via DESTDIR, $(DESTDIR)$(prefix) must already exist before
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -050071# you execute make install.
72DESTDIR=
Guy Schalnat4ee97b01996-01-16 01:51:56 -060073
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -050074DB=$(DESTDIR)$(BINPATH)
75DI=$(DESTDIR)$(INCPATH)
76DL=$(DESTDIR)$(LIBPATH)
77DM=$(DESTDIR)$(MANPATH)
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -050078
Cosmin Truta9ab7b4c2014-03-22 13:13:11 -050079# Pre-built configuration
80# See scripts/pnglibconf.mak for more options
81PNGLIBCONF_H_PREBUILT = scripts/pnglibconf.h.prebuilt
82
Glenn Randers-Pehrson glennrp@comcast.net7ecf7bd2009-05-02 15:36:08 -050083OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050084 pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
85 pngwtran.o pngmem.o pngerror.o pngpread.o
Guy Schalnat4ee97b01996-01-16 01:51:56 -060086
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -060087OBJSDLL = $(OBJS:.o=.pic.o)
88
89.SUFFIXES: .c .o .pic.o
90
Glenn Randers-Pehrson42503282014-01-12 10:44:01 -060091.c.o:
92 $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
93
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -060094.c.pic.o:
95 $(CC) -c $(CFLAGS) -fPIC -o $@ $*.c
96
Glenn Randers-Pehrson glennrp@comcast.net7ecf7bd2009-05-02 15:36:08 -050097all: libpng.a $(LIBSO) pngtest pngtest-static libpng.pc libpng-config
Guy Schalnat4ee97b01996-01-16 01:51:56 -060098
Cosmin Truta9ab7b4c2014-03-22 13:13:11 -050099pnglibconf.h: $(PNGLIBCONF_H_PREBUILT)
Glenn Randers-Pehrsonff649a02014-08-07 19:51:35 -0500100 $(CP) $(PNGLIBCONF_H_PREBUILT) $@
Glenn Randers-Pehrson72531442010-04-17 08:17:51 -0500101
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600102libpng.a: $(OBJS)
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600103 $(AR_RC) $@ $(OBJS)
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600104 $(RANLIB) $@
105
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500106libpng.pc:
Glenn Randers-Pehrson glennrp@comcast.net7ecf7bd2009-05-02 15:36:08 -0500107 cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
108 -e s!@exec_prefix@!$(exec_prefix)! \
109 -e s!@libdir@!$(LIBPATH)! \
110 -e s!@includedir@!$(INCPATH)! \
Glenn Randers-Pehrson7455cbf2011-11-24 14:40:36 -0600111 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500112
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500113libpng-config:
114 ( cat scripts/libpng-config-head.in; \
115 echo prefix=\"$(prefix)\"; \
Glenn Randers-Pehrson5ff38d32002-09-17 23:38:46 -0500116 echo I_opts=\"-I$(INCPATH)/$(LIBNAME)\"; \
117 echo L_opts=\"-L$(LIBPATH)\"; \
118 echo R_opts=\"-Wl,-rpath,$(LIBPATH)\"; \
Glenn Randers-Pehrson7455cbf2011-11-24 14:40:36 -0600119 echo libs=\"-lpng16 -lz -lm\"; \
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500120 cat scripts/libpng-config-body.in ) > libpng-config
121 chmod +x libpng-config
122
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600123$(LIBSO): $(LIBSOMAJ)
124 $(LN_SF) $(LIBSOMAJ) $(LIBSO)
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600125
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600126$(LIBSOMAJ): $(OBJSDLL)
127 $(CC) -shared -Wl,-soname,$(LIBSOMAJ) -o $(LIBSOMAJ) $(OBJSDLL)
Glenn Randers-Pehrson glennrp@comcast.net7ecf7bd2009-05-02 15:36:08 -0500128
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600129pngtest: pngtest.o $(LIBSO)
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -0600130 $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600131
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500132pngtest-static: pngtest.o libpng.a
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600133 $(CC) -o pngtest-static $(CFLAGS) pngtest.o $(LDFLAGS_A)
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600134
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600135test: pngtest pngtest-static
136 @echo ""
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600137 @echo " Running pngtest dynamically linked with $(LIBSO):"
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600138 @echo ""
139 ./pngtest
140 @echo ""
141 @echo " Running pngtest statically linked with libpng.a:"
142 @echo ""
143 ./pngtest-static
144
Glenn Randers-Pehrson0b3634b2011-12-17 09:57:00 -0600145install-headers: png.h pngconf.h pnglibconf.h
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600146 -@if [ ! -d $(DI) ]; then $(MKDIR_P) $(DI); fi
147 -@if [ ! -d $(DI)/$(LIBNAME) ]; then $(MKDIR_P) $(DI)/$(LIBNAME); fi
Glenn Randers-Pehrson0b3634b2011-12-17 09:57:00 -0600148 cp png.h pngconf.h pnglibconf.h $(DI)/$(LIBNAME)
149 chmod 644 $(DI)/$(LIBNAME)/png.h $(DI)/$(LIBNAME)/pngconf.h $(DI)/$(LIBNAME)/pnglibconf.h
150 -@$(RM_F) $(DI)/png.h $(DI)/pngconf.h $(DI)/pnglibconf.h
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600151 -@$(RM_F) $(DI)/libpng
152 (cd $(DI); $(LN_SF) $(LIBNAME) libpng; $(LN_SF) $(LIBNAME)/* .)
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600153
154install-static: install-headers libpng.a
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600155 -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500156 cp libpng.a $(DL)/$(LIBNAME).a
157 chmod 644 $(DL)/$(LIBNAME).a
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600158 -@$(RM_F) $(DL)/libpng.a
159 (cd $(DL); $(LN_SF) $(LIBNAME).a libpng.a)
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600160
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600161install-shared: install-headers $(LIBSOMAJ) libpng.pc
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600162 -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600163 -@$(RM_F) $(DL)/$(LIBSO)
164 -@$(RM_F) $(DL)/$(LIBSOREL)
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600165 -@$(RM_F) $(DL)/$(OLDSO)
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600166 cp $(LIBSOMAJ) $(DL)/$(LIBSOREL)
167 chmod 755 $(DL)/$(LIBSOREL)
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500168 (cd $(DL); \
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600169 $(LN_SF) $(LIBSOREL) $(LIBSO); \
170 $(LN_SF) $(LIBSO) $(OLDSO))
171
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600172 -@if [ ! -d $(DL)/pkgconfig ]; then $(MKDIR_P) $(DL)/pkgconfig; fi
173 -@$(RM_F) $(DL)/pkgconfig/$(LIBNAME).pc
174 -@$(RM_F) $(DL)/pkgconfig/libpng.pc
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500175 cp libpng.pc $(DL)/pkgconfig/$(LIBNAME).pc
176 chmod 644 $(DL)/pkgconfig/$(LIBNAME).pc
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600177 (cd $(DL)/pkgconfig; $(LN_SF) $(LIBNAME).pc libpng.pc)
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600178
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500179install-man: libpng.3 libpngpf.3 png.5
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600180 -@if [ ! -d $(DM) ]; then $(MKDIR_P) $(DM); fi
181 -@if [ ! -d $(DM)/man3 ]; then $(MKDIR_P) $(DM)/man3; fi
182 -@$(RM_F) $(DM)/man3/libpng.3
183 -@$(RM_F) $(DM)/man3/libpngpf.3
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500184 cp libpng.3 $(DM)/man3
185 cp libpngpf.3 $(DM)/man3
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600186 -@if [ ! -d $(DM)/man5 ]; then $(MKDIR_P) $(DM)/man5; fi
187 -@$(RM_F) $(DM)/man5/png.5
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500188 cp png.5 $(DM)/man5
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600189
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500190install-config: libpng-config
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600191 -@if [ ! -d $(DB) ]; then $(MKDIR_P) $(DB); fi
192 -@$(RM_F) $(DB)/libpng-config
193 -@$(RM_F) $(DB)/$(LIBNAME)-config
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500194 cp libpng-config $(DB)/$(LIBNAME)-config
195 chmod 755 $(DB)/$(LIBNAME)-config
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600196 (cd $(DB); $(LN_SF) $(LIBNAME)-config libpng-config)
Glenn Randers-Pehrson704228f2002-05-02 20:49:40 -0500197
198install: install-static install-shared install-man install-config
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600199
Glenn Randers-Pehrsond020e9d2002-06-28 09:34:00 -0500200# If you installed in $(DESTDIR), test-installed won't work until you
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -0500201# move the library to its final location. Use test-dd to test it
202# before then.
203
204test-dd:
205 echo
206 echo Testing installed dynamic shared library in $(DL).
Glenn Randers-Pehrson42503282014-01-12 10:44:01 -0600207 $(CC) -I$(DI) $(CPPFLAGS) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600208 `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500209 -L$(DL) -L$(ZLIBLIB) -Wl, -rpath,$(DL) -Wl,-rpath,$(ZLIBLIB) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600210 -o pngtestd `$(BINPATH)/$(LIBNAME)-config --ldflags`
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -0500211 ./pngtestd pngtest.png
Glenn Randers-Pehrsond020e9d2002-06-28 09:34:00 -0500212
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500213test-installed:
Glenn Randers-Pehrson42503282014-01-12 10:44:01 -0600214 $(CC) $(CPPFLAGS) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600215 `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
Glenn Randers-Pehrsond020e9d2002-06-28 09:34:00 -0500216 -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600217 -o pngtesti `$(BINPATH)/$(LIBNAME)-config --ldflags`
Glenn Randers-Pehrson2ae022d2002-07-01 22:23:46 -0500218 ./pngtesti pngtest.png
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500219
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600220clean:
Glenn Randers-Pehrson glennrp@comcast.net7ecf7bd2009-05-02 15:36:08 -0500221 $(RM_F) *.o libpng.a pngtest pngout.png libpng-config \
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600222 $(LIBSO) $(LIBSOMAJ)* pngtest-static pngtesti \
Glenn Randers-Pehrson72531442010-04-17 08:17:51 -0500223 libpng.pc pnglibconf.h
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600224
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600225DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
226writelock:
227 chmod a-w *.[ch35] $(DOCS) scripts/*
228
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600229# DO NOT DELETE THIS LINE -- make depend depends on it.
230
Glenn Randers-Pehrson42503282014-01-12 10:44:01 -0600231png.o png.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
232pngerror.o pngerror.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
233pngrio.o pngrio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
234pngwio.o pngwio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
235pngmem.o pngmem.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
236pngset.o pngset.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
237pngget.o pngget.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
238pngread.o pngread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
239pngrtran.o pngrtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
240pngrutil.o pngrutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
241pngtrans.o pngtrans.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
242pngwrite.o pngwrite.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
243pngwtran.o pngwtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
244pngwutil.o pngwutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
245pngpread.o pngpread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -0600246
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600247pngtest.o: png.h pngconf.h pnglibconf.h