This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
libpng/scripts/makefile.solaris

121 lines
3.6 KiB
Plaintext
Raw Normal View History

1998-03-13 13:39:39 +00:00
# makefile for libpng on Solaris 2.x with gcc
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
1999-09-17 17:27:26 +00:00
# Where make install puts libpng.a, libpng.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
2000-05-04 02:06:11 +00:00
# read libpng.txt or png.h to see why PNGMAJ is 2. You should not
1998-03-07 12:06:55 +00:00
# have to change it.
2000-05-04 02:06:11 +00:00
PNGMAJ = 2
2000-07-14 13:15:12 +00:00
PNGMIN = 1.0.8beta4
1997-01-17 07:34:35 +00:00
PNGVER = $(PNGMAJ).$(PNGMIN)
1996-01-16 07:51:56 +00:00
1997-05-16 07:46:07 +00:00
INCPATH=$(prefix)/include
LIBPATH=$(prefix)/lib
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
all: libpng.a libpng.so pngtest
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) $@
1997-01-17 07:34:35 +00:00
libpng.so: libpng.so.$(PNGMAJ)
1999-09-17 17:27:26 +00:00
ln -f -s libpng.so.$(PNGMAJ) libpng.so
1996-01-16 07:51:56 +00:00
1997-01-17 07:34:35 +00:00
libpng.so.$(PNGMAJ): libpng.so.$(PNGVER)
1999-09-17 17:27:26 +00:00
ln -f -s libpng.so.$(PNGVER) libpng.so.$(PNGMAJ)
1996-01-16 07:51:56 +00:00
1998-01-08 02:54:20 +00:00
libpng.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
1998-03-13 13:39:39 +00:00
$(LD) -G -L$(ZLIBLIB) -R$(ZLIBLIB) -h libpng.so.$(PNGMAJ) \
1998-03-07 12:06:55 +00:00
-o libpng.so.$(PNGVER) $(OBJSDLL) -lz
1996-01-16 07:51:56 +00:00
pngtest: pngtest.o libpng.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
1998-01-08 02:54:20 +00:00
install: libpng.a libpng.so.$(PNGVER)
1997-05-16 07:46:07 +00:00
-@mkdir $(INCPATH) $(LIBPATH)
cp png.h pngconf.h $(INCPATH)
chmod 644 $(INCPATH)/png.h $(INCPATH)/pngconf.h
1998-01-08 02:54:20 +00:00
cp libpng.a libpng.so.$(PNGVER) $(LIBPATH)
1997-05-16 07:46:07 +00:00
chmod 755 $(LIBPATH)/libpng.so.$(PNGVER)
1998-01-08 02:54:20 +00:00
-@/bin/rm -f $(LIBPATH)/libpng.so.$(PNGMAJ) $(LIBPATH)/libpng.so
1999-09-17 17:27:26 +00:00
(cd $(LIBPATH); ln -f -s libpng.so.$(PNGVER) libpng.so.$(PNGMAJ); \
ln -f -s libpng.so.$(PNGMAJ) libpng.so)
1995-07-20 07:43:20 +00:00
clean:
1998-01-08 02:54:20 +00:00
/bin/rm -f *.o libpng.a libpng.so* 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