1998-03-13 13:39:39 +00:00
|
|
|
# makefile for libpng on Solaris 2.x with gcc
|
2002-02-22 05:14:23 +00:00
|
|
|
# Copyright (C) 2002 Glenn Randers-Pehrson
|
1999-10-01 19:22:25 +00:00
|
|
|
# Contributed by William L. Sebok, based on makefile.linux
|
2000-05-04 02:06:11 +00:00
|
|
|
# Copyright (C) 1998 Greg Roelofs
|
2000-06-04 19:29:29 +00:00
|
|
|
# Copyright (C) 1996, 1997 Andreas Dilger
|
1995-07-20 07:43:20 +00:00
|
|
|
# For conditions of distribution and use, see copyright notice in png.h
|
|
|
|
|
1996-01-16 07:51:56 +00:00
|
|
|
CC=gcc
|
1997-05-16 07:46:07 +00:00
|
|
|
|
2002-02-22 05:14:23 +00:00
|
|
|
# Where make install puts libpng.a, libpng12.so*, and png.h
|
1998-12-29 17:47:59 +00:00
|
|
|
prefix=/usr/local
|
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
# Where the zlib library and include files are located
|
1998-03-16 00:20:23 +00:00
|
|
|
# Changing these to ../zlib poses a security risk. If you want
|
|
|
|
# to have zlib in an adjacent directory, specify the full path instead of "..".
|
|
|
|
#ZLIBLIB=../zlib
|
|
|
|
#ZLIBINC=../zlib
|
|
|
|
|
|
|
|
ZLIBLIB=/usr/local/lib
|
|
|
|
ZLIBINC=/usr/local/include
|
1998-03-13 13:39:39 +00:00
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow \
|
1999-09-17 17:27:26 +00:00
|
|
|
-Wmissing-declarations -Wtraditional -Wcast-align \
|
|
|
|
-Wstrict-prototypes -Wmissing-prototypes #-Wconversion
|
1998-03-07 12:06:55 +00:00
|
|
|
CFLAGS=-I$(ZLIBINC) -Wall -O3 \
|
1999-09-17 17:27:26 +00:00
|
|
|
# $(WARNMORE) -g -DPNG_DEBUG=5
|
1998-03-07 12:06:55 +00:00
|
|
|
LDFLAGS=-L. -R. -L$(ZLIBLIB) -R$(ZLIBLIB) -lpng -lz -lm
|
1995-07-20 07:43:20 +00:00
|
|
|
|
1998-03-07 12:06:55 +00:00
|
|
|
#RANLIB=ranlib
|
|
|
|
RANLIB=echo
|
1995-07-20 07:43:20 +00:00
|
|
|
|
2002-02-22 05:14:23 +00:00
|
|
|
# read libpng.txt or png.h to see why PNGMAJ is 0. You should not
|
1998-03-07 12:06:55 +00:00
|
|
|
# have to change it.
|
2002-02-22 05:14:23 +00:00
|
|
|
PNGMAJ = 0
|
2002-05-03 01:49:40 +00:00
|
|
|
PNGMIN = 1.2.3rc4
|
1997-01-17 07:34:35 +00:00
|
|
|
PNGVER = $(PNGMAJ).$(PNGMIN)
|
2002-02-24 00:55:25 +00:00
|
|
|
LIBNAME = libpng12
|
1996-01-16 07:51:56 +00:00
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
INCPATH=$(prefix)/include
|
|
|
|
LIBPATH=$(prefix)/lib
|
2002-04-27 15:11:25 +00:00
|
|
|
MANPATH=$(prefix)/man
|
2002-05-03 01:49:40 +00:00
|
|
|
BINPATH=$(prefix)/bin
|
2002-04-27 15:11:25 +00:00
|
|
|
|
|
|
|
# override DESTDIR= on the make install command line to easily support
|
|
|
|
# installing into a temporary location. Example:
|
|
|
|
#
|
|
|
|
# make install DESTDIR=/tmp/build/libpng
|
|
|
|
#
|
|
|
|
# If you're going to install into a temporary location
|
|
|
|
# via DESTDIR, that location must already exist before
|
|
|
|
# you execute make install.
|
|
|
|
DESTDIR=
|
1995-07-20 07:43:20 +00:00
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
|
1999-09-17 17:27:26 +00:00
|
|
|
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
|
|
|
|
pngwtran.o pngmem.o pngerror.o pngpread.o
|
1995-07-20 07:43:20 +00:00
|
|
|
|
1998-01-08 02:54:20 +00:00
|
|
|
OBJSDLL = $(OBJS:.o=.pic.o)
|
|
|
|
|
|
|
|
.SUFFIXES: .c .o .pic.o
|
|
|
|
|
|
|
|
.c.pic.o:
|
|
|
|
$(CC) -c $(CFLAGS) -fPIC -o $@ $*.c
|
|
|
|
|
2002-04-27 15:11:25 +00:00
|
|
|
all: libpng.a $(LIBNAME).so pngtest libpng.pc
|
1995-07-20 07:43:20 +00:00
|
|
|
|
|
|
|
libpng.a: $(OBJS)
|
1998-01-08 02:54:20 +00:00
|
|
|
ar rc $@ $(OBJS)
|
1995-07-20 07:43:20 +00:00
|
|
|
$(RANLIB) $@
|
|
|
|
|
2002-04-27 15:11:25 +00:00
|
|
|
libpng.pc:
|
|
|
|
cat scripts/libpng.pc.in | sed -e s\!@PREFIX@!$(prefix)! > libpng.pc
|
|
|
|
|
2002-02-24 00:55:25 +00:00
|
|
|
$(LIBNAME).so: $(LIBNAME).so.$(PNGMAJ)
|
|
|
|
ln -f -s $(LIBNAME).so.$(PNGMAJ) $(LIBNAME).so
|
1996-01-16 07:51:56 +00:00
|
|
|
|
2002-02-24 00:55:25 +00:00
|
|
|
$(LIBNAME).so.$(PNGMAJ): $(LIBNAME).so.$(PNGVER)
|
|
|
|
ln -f -s $(LIBNAME).so.$(PNGVER) $(LIBNAME).so.$(PNGMAJ)
|
1996-01-16 07:51:56 +00:00
|
|
|
|
2002-02-24 00:55:25 +00:00
|
|
|
$(LIBNAME).so.$(PNGVER): $(OBJSDLL)
|
2000-02-05 05:40:16 +00:00
|
|
|
@case "`type ld`" in *ucb*) \
|
|
|
|
echo; \
|
|
|
|
echo '## WARNING:'; \
|
|
|
|
echo '## The commands "CC" and "LD" must NOT refer to /usr/ucb/cc'; \
|
|
|
|
echo '## and /usr/ucb/ld. If they do, you need to adjust your PATH'; \
|
|
|
|
echo '## environment variable to put /usr/ccs/bin ahead of /usr/ucb.'; \
|
|
|
|
echo '## The environment variable LD_LIBRARY_PATH should not be set'; \
|
|
|
|
echo '## at all. If it is, things are likely to break because of'; \
|
|
|
|
echo '## the libucb dependency that is created.'; \
|
|
|
|
echo; \
|
|
|
|
;; \
|
|
|
|
esac
|
2002-02-24 00:55:25 +00:00
|
|
|
$(LD) -G -L$(ZLIBLIB) -R$(ZLIBLIB) -h $(LIBNAME).so.$(PNGMAJ) \
|
|
|
|
-o $(LIBNAME).so.$(PNGVER) $(OBJSDLL) -lz
|
1996-01-16 07:51:56 +00:00
|
|
|
|
2002-02-24 00:55:25 +00:00
|
|
|
pngtest: pngtest.o $(LIBNAME).so
|
1998-01-08 02:54:20 +00:00
|
|
|
$(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
|
1995-09-26 10:22:39 +00:00
|
|
|
|
|
|
|
test: pngtest
|
|
|
|
./pngtest
|
1995-07-20 07:43:20 +00:00
|
|
|
|
2002-03-07 04:08:00 +00:00
|
|
|
install-headers: png.h pngconf.h
|
2002-04-27 15:11:25 +00:00
|
|
|
-@if [ ! -d $(DESTDIR)$(INCPATH) ]; then mkdir $(DESTDIR)$(INCPATH); fi
|
|
|
|
-@if [ ! -d $(DESTDIR)$(INCPATH)/$(LIBNAME) ]; then \
|
|
|
|
mkdir $(DESTDIR)$(INCPATH)/$(LIBNAME); fi
|
|
|
|
cp png.h pngconf.h $(DESTDIR)$(INCPATH)/$(LIBNAME)
|
|
|
|
chmod 644 $(DESTDIR)$(INCPATH)/$(LIBNAME)/png.h \
|
|
|
|
$(DESTDIR)$(INCPATH)/$(LIBNAME)/pngconf.h
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(INCPATH)/png.h $(DESTDIR)$(INCPATH)/pngconf.h
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(INCPATH)/libpng
|
|
|
|
(cd $(DESTDIR)$(INCPATH); ln -f -s $(LIBNAME) libpng; \
|
|
|
|
ln -f -s $(LIBNAME)/* .)
|
2002-03-07 04:08:00 +00:00
|
|
|
|
|
|
|
install-static: install-headers libpng.a
|
2002-04-27 15:11:25 +00:00
|
|
|
-@if [ ! -d $(DESTDIR)$(LIBPATH) ]; then mkdir $(DESTDIR)$(LIBPATH); fi
|
|
|
|
cp libpng.a $(DESTDIR)$(LIBPATH)/$(LIBNAME).a
|
|
|
|
chmod 644 $(DESTDIR)$(LIBPATH)/$(LIBNAME).a
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(LIBPATH)/libpng.a
|
|
|
|
(cd $(DESTDIR)$(LIBPATH); ln -f -s $(LIBNAME).a libpng.a)
|
2002-03-07 04:08:00 +00:00
|
|
|
|
2002-05-01 16:51:26 +00:00
|
|
|
install-shared: install-headers $(LIBNAME).so.$(PNGVER) libpng.pc
|
2002-04-27 15:11:25 +00:00
|
|
|
-@if [ ! -d $(DESTDIR)$(LIBPATH) ]; then mkdir $(DESTDIR)$(LIBPATH); fi
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(LIBPATH)/$(LIBNAME).so.$(PNGMAJ)* \
|
|
|
|
$(DESTDIR)$(LIBPATH)/$(LIBNAME).so
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(LIBPATH)/libpng.so
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(LIBPATH)/libpng.so.3
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(LIBPATH)/libpng.so.3.*
|
|
|
|
cp $(LIBNAME).so.$(PNGVER) $(DESTDIR)$(LIBPATH)
|
|
|
|
chmod 755 $(DESTDIR)$(LIBPATH)/$(LIBNAME).so.$(PNGVER)
|
|
|
|
(cd $(DESTDIR)$(LIBPATH); \
|
2002-03-26 00:49:08 +00:00
|
|
|
ln -f -s $(LIBNAME).so.$(PNGVER) libpng.so; \
|
|
|
|
ln -f -s $(LIBNAME).so.$(PNGVER) libpng.so.3; \
|
|
|
|
ln -f -s $(LIBNAME).so.$(PNGVER) libpng.so.3.$(PNGMIN); \
|
|
|
|
ln -f -s $(LIBNAME).so.$(PNGVER) $(LIBNAME).so; \
|
|
|
|
ln -f -s $(LIBNAME).so.$(PNGVER) $(LIBNAME).so.$(PNGMAJ))
|
2002-04-27 15:11:25 +00:00
|
|
|
-@if [ ! -d $(DESTDIR)$(LIBPATH)/pkgconfig ]; then \
|
|
|
|
mkdir $(DESTDIR)$(LIBPATH)/pkgconfig; fi
|
2002-05-03 01:49:40 +00:00
|
|
|
-@/bin/rm -f $(DESTDIR)$(LIBPATH)/pkgconfig/libpng12.pc
|
2002-05-01 21:55:46 +00:00
|
|
|
-@/bin/rm -f $(DESTDIR)$(LIBPATH)/pkgconfig/libpng.pc
|
2002-04-27 15:11:25 +00:00
|
|
|
cp libpng.pc $(DESTDIR)$(LIBPATH)/pkgconfig/libpng12.pc
|
|
|
|
chmod 644 $(DESTDIR)$(LIBPATH)/pkgconfig/libpng12.pc
|
|
|
|
(cd $(DESTDIR)$(LIBPATH)/pkgconfig; ln -f -s libpng12.pc libpng.pc)
|
|
|
|
|
|
|
|
install-man: libpng.3 libpngpf.3 png.5
|
2002-05-03 01:49:40 +00:00
|
|
|
-@if [ ! -d $(DESTDIR)$(MANPATH) ]; then mkdir $(DESTDIR)$(MANPATH); fi
|
|
|
|
-@if [ ! -d $(DESTDIR)$(MANPATH)/man3 ]; then \
|
|
|
|
mkdir $(DESTDIR)$(MANPATH)/man3; fi
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(MANPATH)/man3/libpng.3
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(MANPATH)/man3/libpngpf.3
|
|
|
|
cp libpng.3 $(DESTDIR)$(MANPATH)/man3
|
|
|
|
cp libpngpf.3 $(DESTDIR)$(MANPATH)/man3
|
|
|
|
-@if [ ! -d $(DESTDIR)$(MANPATH)/man5 ]; then \
|
|
|
|
mkdir $(DESTDIR)$(MANPATH)/man5; fi
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(MANPATH)/man5/png.5
|
|
|
|
cp png.5 $(DESTDIR)$(MANPATH)/man5
|
|
|
|
|
|
|
|
install-config: scripts/libpng-config
|
|
|
|
-@if [ ! -d $(DESTDIR)$(BINPATH) ]; then \
|
|
|
|
mkdir $(DESTDIR)$(BINPATH); fi
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(BINPATH)/libpng-config
|
|
|
|
-@/bin/rm -f $(DESTDIR)$(BINPATH)/libpng12-config
|
|
|
|
cp scripts/libpng-config $(DESTDIR)$(BINPATH)/libpng12-config
|
|
|
|
chmod 755 $(DESTDIR)$(BINPATH)/libpng12-config
|
|
|
|
(cd $(DESTDIR)$(BINPATH); ln -sf libpng12-config libpng-config)
|
|
|
|
|
|
|
|
install: install-static install-shared install-man install-config
|
1995-07-20 07:43:20 +00:00
|
|
|
|
|
|
|
clean:
|
2002-02-24 00:55:25 +00:00
|
|
|
/bin/rm -f *.o libpng.a $(LIBNAME).so $(LIBNAME).so.$(PNGMAJ)* \
|
2002-02-22 05:14:23 +00:00
|
|
|
pngtest pngout.png
|
1995-07-20 07:43:20 +00:00
|
|
|
|
1999-12-10 15:43:02 +00:00
|
|
|
DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
|
|
|
|
writelock:
|
|
|
|
chmod a-w *.[ch35] $(DOCS) scripts/*
|
|
|
|
|
1995-07-20 07:43:20 +00:00
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
|
|
|
|
1998-01-08 02:54:20 +00:00
|
|
|
png.o png.pic.o: png.h pngconf.h
|
|
|
|
pngerror.o pngerror.pic.o: png.h pngconf.h
|
|
|
|
pngrio.o pngrio.pic.o: png.h pngconf.h
|
|
|
|
pngwio.o pngwio.pic.o: png.h pngconf.h
|
|
|
|
pngmem.o pngmem.pic.o: png.h pngconf.h
|
|
|
|
pngset.o pngset.pic.o: png.h pngconf.h
|
|
|
|
pngget.o pngget.pic.o: png.h pngconf.h
|
|
|
|
pngread.o pngread.pic.o: png.h pngconf.h
|
|
|
|
pngrtran.o pngrtran.pic.o: png.h pngconf.h
|
|
|
|
pngrutil.o pngrutil.pic.o: png.h pngconf.h
|
|
|
|
pngtrans.o pngtrans.pic.o: png.h pngconf.h
|
|
|
|
pngwrite.o pngwrite.pic.o: png.h pngconf.h
|
|
|
|
pngwtran.o pngwtran.pic.o: png.h pngconf.h
|
|
|
|
pngwutil.o pngwutil.pic.o: png.h pngconf.h
|
|
|
|
pngpread.o pngpread.pic.o: png.h pngconf.h
|
|
|
|
|
1995-09-26 10:22:39 +00:00
|
|
|
pngtest.o: png.h pngconf.h
|