makefile.hpux 5.1 KB
Newer Older
1
# makefile for libpng, HPUX (10.20 and 11.00)
2
# Copyright (C) 1999-2002 Glenn Randers-Pehrson
3
# Copyright (C) 1995 Guy Eric Schalnat, Group 42
4
# contributed by Jim Rice and updated by Chris Schleicher, Hewlett Packard
5 6 7 8 9 10 11 12
# For conditions of distribution and use, see copyright notice in png.h

# Where the zlib library and include files are located
ZLIBLIB=/opt/zlib/lib
ZLIBINC=/opt/zlib/include

CC=cc
CFLAGS=-I$(ZLIBINC) -O -Ae +DA1.1 +DS2.0
13
# Caution: be sure you have built zlib with the same CFLAGS.
14 15 16 17 18
CCFLAGS=-I$(ZLIBINC) -O -Ae +DA1.1 +DS2.0
LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm

RANLIB=ranlib

19
# read libpng.txt or png.h to see why PNGMAJ is 0.  You should not
20
# have to change it.
21
PNGMAJ = 0
22
PNGMIN = 1.2.3rc2
23
PNGVER = $(PNGMAJ).$(PNGMIN)
24
LIBNAME = libpng12
25

26
# where make install puts libpng.a, libpng12.sl, and png.h
27
prefix=/opt/libpng
28 29 30 31 32 33 34 35 36 37 38 39 40
INCPATH=$(prefix)/include
LIBPATH=$(prefix)/lib
MANPATH=$(prefix)/man

# 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=
41 42

OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
43 44
	pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
	pngwtran.o pngmem.o pngerror.o pngpread.o
45

46 47 48 49 50 51 52
OBJSDLL = $(OBJS:.o=.pic.o)

.SUFFIXES:	.c .o .pic.o

.c.pic.o:
	$(CC) -c $(CFLAGS) +z -o $@ $*.c

53
all: libpng.a $(LIBNAME).sl pngtest libpng.pc
54 55

libpng.a: $(OBJS)
56 57
	ar rc $@  $(OBJS)
	$(RANLIB) $@
58

59 60 61
libpng.pc:
	cat scripts/libpng.pc.in | sed -e s\!@PREFIX@!$(prefix)! > libpng.pc

62
$(LIBNAME).sl: $(LIBNAME).sl.$(PNGMAJ)
63
	ln -sf $(LIBNAME).sl.$(PNGMAJ) $(LIBNAME).sl
64

65
$(LIBNAME).sl.$(PNGMAJ): $(LIBNAME).sl.$(PNGVER)
66
	ln -sf $(LIBNAME).sl.$(PNGVER) $(LIBNAME).sl.$(PNGMAJ)
67

68
$(LIBNAME).sl.$(PNGVER): $(OBJSDLL)
69
	$(LD) -b -L$(ZLIBLIB) +s +b $(ZLIBLIB) \
70 71
	+h $(LIBNAME).sl.$(PNGMAJ) -o $(LIBNAME).sl.$(PNGVER) \
	$(OBJSDLL) -lz
72

73
pngtest: pngtest.o libpng.a
74
	$(CC) -o pngtest $(CCFLAGS) pngtest.o $(LDFLAGS)
75 76

test: pngtest
77
	./pngtest
78

79
install-headers: png.h pngconf.h
80 81 82 83 84 85 86 87 88
	-@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 -sf $(LIBNAME) libpng; ln -sf $(LIBNAME)/* .)
89 90

install-static: install-headers libpng.a
91 92 93 94 95
	-@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 -sf $(LIBNAME).a libpng.a)
96

97
install-shared: install-headers $(LIBNAME).sl.$(PNGVER) libpng.pc
98 99 100 101 102 103 104 105 106
	-@if [ ! -d $(DESTDIR)$(LIBPATH) ]; then mkdir $(DESTDIR)$(LIBPATH); fi
	-@/bin/rm -f $(DESTDIR)$(LIBPATH)/$(LIBNAME).sl.$(PNGMAJ)* \
	$(DESTDIR)$(LIBPATH)/$(LIBNAME).sl
	-@/bin/rm -f $(DESTDIR)$(LIBPATH)/libpng.sl
	-@/bin/rm -f $(DESTDIR)$(LIBPATH)/libpng.sl.3
	-@/bin/rm -f $(DESTDIR)$(LIBPATH)/libpng.sl.3.*
	cp $(LIBNAME).sl.$(PNGVER) $(DESTDIR)$(LIBPATH)
	chmod 755 $(DESTDIR)$(LIBPATH)/$(LIBNAME).sl.$(PNGVER)
	(cd $(DESTDIR)$(LIBPATH); \
107 108 109
	ln -sf $(LIBNAME).sl.$(PNGVER) libpng.sl; \
	ln -sf $(LIBNAME).sl.$(PNGVER) libpng.sl.3; \
	ln -sf $(LIBNAME).sl.$(PNGVER) libpng.sl.3.$(PNGMIN); \
110 111
	ln -sf $(LIBNAME).sl.$(PNGVER) $(LIBNAME).sl.$(PNGMAJ); \
	ln -sf $(LIBNAME).sl.$(PNGMAJ) $(LIBNAME).sl)
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
	-@if [ ! -d $(DESTDIR)$(LIBPATH)/pkgconfig ]; then \
	mkdir $(DESTDIR)$(LIBPATH)/pkgconfig; fi
	cp libpng.pc $(DESTDIR)$(LIBPATH)/pkgconfig/libpng12.pc
	chmod 644 $(DESTDIR)$(LIBPATH)/pkgconfig/libpng12.pc
	(cd $(DESTDIR)$(LIBPATH)/pkgconfig; ln -sf libpng12.pc libpng.pc)

install-man: libpng.3 libpngpf.3 png.5
	-@if [ ! -d $(MANPATH) ]; then mkdir $(MANPATH); fi
	-@if [ ! -d $(MANPATH)/man3 ]; then mkdir $(MANPATH)/man3; fi
	-@/bin/rm -f $(MANPATH)/man3/libpng.3
	-@/bin/rm -f $(MANPATH)/man3/libpngpf.3
	cp libpng.3 $(MANPATH)/man3
	cp libpngpf.3 $(MANPATH)/man3
	-@if [ ! -d $(MANPATH)/man5 ]; then mkdir $(MANPATH)/man5; fi
	-@/bin/rm -f $(MANPATH)/man5/png.5
	cp png.5 $(MANPATH)/man5

install: install-static install-shared install-man
130 131

clean:
132 133
	/bin/rm -f *.o libpng.a $(LIBNAME).sl $(LIBNAME).sl.$(PNGMAJ)* \
	pngtest pngout.png
134

135 136 137 138
DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
writelock:
	chmod a-w *.[ch35] $(DOCS) scripts/*

139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
# DO NOT DELETE THIS LINE -- make depend depends on it.

png.o: png.h pngconf.h
pngerror.o: png.h pngconf.h
pngrio.o: png.h pngconf.h
pngwio.o: png.h pngconf.h
pngmem.o: png.h pngconf.h
pngset.o: png.h pngconf.h
pngget.o: png.h pngconf.h
pngread.o: png.h pngconf.h
pngrtran.o: png.h pngconf.h
pngrutil.o: png.h pngconf.h
pngtest.o: png.h pngconf.h
pngtrans.o: png.h pngconf.h
pngwrite.o: png.h pngconf.h
pngwtran.o: png.h pngconf.h
pngwutil.o: png.h pngconf.h
pngpread.o: png.h pngconf.h