makefile.hpgcc 6.9 KB
Newer Older
1
# makefile for libpng on HP-UX using GCC with the HP ANSI/C linker.
2
# Copyright (C) 2002, Glenn Randers-Pehrson
3 4 5 6 7 8
# Copyright (C) 2001, Laurent faillie
# Copyright (C) 1998, 1999 Greg Roelofs
# Copyright (C) 1996, 1997 Andreas Dilger
# For conditions of distribution and use, see copyright notice in png.h

CC=gcc
9
LD=ld
10

11
# where "make install" puts libpng.a, libpng.sl*, png.h and pngconf.h
12 13 14 15 16 17
prefix=/usr/local

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

18 19 20 21 22 23 24
# Note that if you plan to build a libpng shared library, zlib must also
# be a shared library, which zlib's configure does not do.  After running
# zlib's configure, edit the appropriate lines of makefile to read:
#   CFLAGS=-O1 -DHAVE_UNISTD -DUSE_MAP -fPIC \
#   LDSHARED=ld -b
#   SHAREDLIB=libz.sl

25 26 27 28 29 30 31 32 33 34 35 36
ALIGN=
# for i386:
#ALIGN=-malign-loops=2 -malign-functions=2

WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow \
	-Wmissing-declarations -Wtraditional -Wcast-align \
	-Wstrict-prototypes -Wmissing-prototypes #-Wconversion

# for pgcc version 2.95.1, -O3 is buggy; don't use it.

CFLAGS=-I$(ZLIBINC) -Wall -O3 -funroll-loops \
	$(ALIGN) # $(WARNMORE) -g -DPNG_DEBUG=5
37
#LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng12 -lz -lm
38 39 40 41
LDFLAGS=-L. -L$(ZLIBLIB) -lpng12 -lz -lm

RANLIB=ranlib
#RANLIB=echo
42

43
PNGMAJ = 0
44
PNGMIN = 1.2.8beta5
45
PNGVER = $(PNGMAJ).$(PNGMIN)
46
LIBNAME = libpng12
47 48 49

INCPATH=$(prefix)/include
LIBPATH=$(prefix)/lib
50
MANPATH=$(prefix)/man
51
BINPATH=$(prefix)/bin
52 53 54 55 56 57 58

# 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
59
# via DESTDIR, $(DESTDIR)$(prefix) must already exist before
60 61
# you execute make install.
DESTDIR=
62

63 64 65 66
DB=$(DESTDIR)$(BINPATH)
DI=$(DESTDIR)$(INCPATH)
DL=$(DESTDIR)$(LIBPATH)
DM=$(DESTDIR)$(MANPATH)
67

68 69 70 71 72 73 74 75 76 77 78
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
	pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
	pngwtran.o pngmem.o pngerror.o pngpread.o

OBJSDLL = $(OBJS:.o=.pic.o)

.SUFFIXES:      .c .o .pic.o

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

79
all: libpng.a $(LIBNAME).sl pngtest libpng.pc libpng-config
80 81

libpng.a: $(OBJS)
82
	ar rc $@ $(OBJS)
83 84
	$(RANLIB) $@

85 86 87
libpng.pc:
	cat scripts/libpng.pc.in | sed -e s\!@PREFIX@!$(prefix)! > libpng.pc

88 89 90
libpng-config:
	( cat scripts/libpng-config-head.in; \
	echo prefix=\"$(prefix)\"; \
91
	echo I_opts=\"-I$(INCPATH)/$(LIBNAME)\"; \
92 93 94 95
	echo libs=\"-lpng12 -lz -lm\"; \
	cat scripts/libpng-config-body.in ) > libpng-config
	chmod +x libpng-config

96
$(LIBNAME).sl: $(LIBNAME).sl.$(PNGMAJ)
97
	ln -sf $(LIBNAME).sl.$(PNGMAJ) $(LIBNAME).sl
98

99
$(LIBNAME).sl.$(PNGMAJ): $(LIBNAME).sl.$(PNGVER)
100
	ln -sf $(LIBNAME).sl.$(PNGVER) $(LIBNAME).sl.$(PNGMAJ)
101

102
$(LIBNAME).sl.$(PNGVER): $(OBJSDLL)
103
	$(LD) -b +s \
104
	+h $(LIBNAME).sl.$(PNGMAJ) -o $(LIBNAME).sl.$(PNGVER) $(OBJSDLL)
105

106
libpng.sl.3.$(PNGMIN): $(OBJSDLL)
107
	$(LD) -b +s \
108
	+h libpng.sl.3 -o libpng.sl.3.$(PNGMIN) $(OBJSDLL)
109

110
pngtest: pngtest.o $(LIBNAME).sl
111 112 113 114 115
	$(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)

test: pngtest
	./pngtest

116

117
install-headers: png.h pngconf.h
118 119 120
	-@if [ ! -d $(DI) ]; then mkdir $(DI); fi
	-@if [ ! -d $(DI)/$(LIBNAME) ]; then mkdir $(DI)/$(LIBNAME); fi
	cp png.h pngconf.h $(DI)/$(LIBNAME)
121
	chmod 644 $(DI)/$(LIBNAME)/png.h $(DI)/$(LIBNAME)/pngconf.h
122 123 124
	-@/bin/rm -f $(DI)/png.h $(DI)/pngconf.h
	-@/bin/rm -f $(DI)/libpng
	(cd $(DI); ln -sf $(LIBNAME) libpng; ln -sf $(LIBNAME)/* .)
125 126

install-static: install-headers libpng.a
127 128 129 130 131
	-@if [ ! -d $(DL) ]; then mkdir $(DL); fi
	cp libpng.a $(DL)/$(LIBNAME).a
	chmod 644 $(DL)/$(LIBNAME).a
	-@/bin/rm -f $(DL)/libpng.a
	(cd $(DL); ln -sf $(LIBNAME).a libpng.a)
132

133 134
install-shared: install-headers $(LIBNAME).sl.$(PNGVER) libpng.pc \
	libpng.sl.3.$(PNGMIN)
135
	-@if [ ! -d $(DL) ]; then mkdir $(DL); fi
136
	-@/bin/rm -f $(DL)/$(LIBNAME).sl.$(PNGVER)* $(DL)/$(LIBNAME).sl
137
	-@/bin/rm -f $(DL)/$(LIBNAME).sl.$(PNGMAJ)
138 139
	-@/bin/rm -f $(DL)/libpng.sl
	-@/bin/rm -f $(DL)/libpng.sl.3
140
	-@/bin/rm -f $(DL)/libpng.sl.3.$(PNGMIN)*
141
	cp $(LIBNAME).sl.$(PNGVER) $(DL)
142
	cp libpng.sl.3.$(PNGMIN) $(DL)
143
	chmod 755 $(DL)/$(LIBNAME).sl.$(PNGVER)
144
	chmod 755 $(DL)/libpng.sl.3.$(PNGMIN)
145
	(cd $(DL); \
146
	ln -sf libpng.sl.3.$(PNGMIN) libpng.sl.3; \
147
	ln -sf libpng.sl.3 libpng.sl; \
148 149
	ln -sf $(LIBNAME).sl.$(PNGVER) $(LIBNAME).sl.$(PNGMAJ); \
	ln -sf $(LIBNAME).sl.$(PNGMAJ) $(LIBNAME).sl)
150
	-@if [ ! -d $(DL)/pkgconfig ]; then mkdir $(DL)/pkgconfig; fi
151 152 153 154 155
	-@/bin/rm -f $(DL)/pkgconfig/$(LIBNAME).pc
	-@/bin/rm -f $(DL)/pkgconfig/libpng.pc
	cp libpng.pc $(DL)/pkgconfig/$(LIBNAME).pc
	chmod 644 $(DL)/pkgconfig/$(LIBNAME).pc
	(cd $(DL)/pkgconfig; ln -sf $(LIBNAME).pc libpng.pc)
156 157

install-man: libpng.3 libpngpf.3 png.5
158 159 160 161 162 163 164 165 166
	-@if [ ! -d $(DM) ]; then mkdir $(DM); fi
	-@if [ ! -d $(DM)/man3 ]; then mkdir $(DM)/man3; fi
	-@/bin/rm -f $(DM)/man3/libpng.3
	-@/bin/rm -f $(DM)/man3/libpngpf.3
	cp libpng.3 $(DM)/man3
	cp libpngpf.3 $(DM)/man3
	-@if [ ! -d $(DM)/man5 ]; then mkdir $(DM)/man5; fi
	-@/bin/rm -f $(DM)/man5/png.5
	cp png.5 $(DM)/man5
167

168
install-config: libpng-config
169 170 171 172 173 174
	-@if [ ! -d $(DB) ]; then mkdir $(DB); fi
	-@/bin/rm -f $(DB)/libpng-config
	-@/bin/rm -f $(DB)/$(LIBNAME)-config
	cp libpng-config $(DB)/$(LIBNAME)-config
	chmod 755 $(DB)/$(LIBNAME)-config
	(cd $(DB); ln -sf $(LIBNAME)-config libpng-config)
175 176

install: install-static install-shared install-man install-config
177

178
# If you installed in $(DESTDIR), test-installed won't work until you
179 180 181 182 183 184 185 186 187 188 189
# move the library to its final location.  Use test-dd to test it
# before then.

test-dd:
	echo
	echo Testing installed dynamic shared library in $(DL).
	$(CC) -I$(DI) -I$(ZLIBINC) \
	   `$(BINPATH)/libpng12-config --cflags` pngtest.c \
	   -L$(DL) -L$(ZLIBLIB) -W1,-rpath,$(DL) -Wl,-rpath,$(ZLIBLIB) \
	   -o pngtestd `$(BINPATH)/libpng12-config --ldflags`
	./pngtestd pngtest.png
190 191 192 193 194

test-installed:
	echo
	echo Testing installed dynamic shared library.
	$(CC) -I$(ZLIBINC) \
195
	   `$(BINPATH)/libpng12-config --cflags` pngtest.c \
196
	   -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) \
197
	   -o pngtesti `$(BINPATH)/libpng12-config --ldflags`
198
	./pngtesti pngtest.png
199 200

clean:
201
	/bin/rm -f *.o libpng.a pngtest pngtesti pngout.png \
202
	libpng-config $(LIBNAME).sl $(LIBNAME).sl.$(PNGMAJ)* \
203 204
	libpng.sl.3.$(PNGMIN) \
	libpng.pc
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228

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

# DO NOT DELETE THIS LINE -- make depend depends on it.

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

pngtest.o: png.h pngconf.h