1 | # makefile for libpng, HPUX (10.20 and 11.00) using the ANSI/C product.
|
---|
2 | # Copyright (C) 2020-2024 Cosmin Truta
|
---|
3 | # Copyright (C) 1999-2002, 2006, 2009, 2010-2014 Glenn Randers-Pehrson
|
---|
4 | # Copyright (C) 1995 Guy Eric Schalnat, Group 42
|
---|
5 | # Contributed by Jim Rice and updated by Chris Schleicher, Hewlett Packard
|
---|
6 | #
|
---|
7 | # This code is released under the libpng license.
|
---|
8 | # For conditions of distribution and use, see the disclaimer
|
---|
9 | # and license in png.h
|
---|
10 |
|
---|
11 | # Where the zlib library and include files are located
|
---|
12 | ZLIBLIB=/opt/zlib/lib
|
---|
13 | ZLIBINC=/opt/zlib/include
|
---|
14 |
|
---|
15 | # Note that if you plan to build a libpng shared library, zlib must also
|
---|
16 | # be a shared library, which zlib's configure does not do. After running
|
---|
17 | # zlib's configure, edit the appropriate lines of makefile to read:
|
---|
18 | # CFLAGS=-O1 -DHAVE_UNISTD -DUSE_MAP -fPIC \
|
---|
19 | # LDSHARED=ld -b
|
---|
20 | # SHAREDLIB=libz.sl
|
---|
21 |
|
---|
22 | # Library name:
|
---|
23 | LIBNAME=libpng16
|
---|
24 | PNGMAJ=16
|
---|
25 |
|
---|
26 | # Shared library names:
|
---|
27 | LIBSO=$(LIBNAME).sl
|
---|
28 | LIBSOMAJ=$(LIBNAME).sl.$(PNGMAJ)
|
---|
29 |
|
---|
30 | # Utilities:
|
---|
31 | CC=cc
|
---|
32 | AR=ar
|
---|
33 | RANLIB=ranlib
|
---|
34 | LN_SF=ln -sf
|
---|
35 | CP=cp
|
---|
36 | RM_F=/bin/rm -f
|
---|
37 |
|
---|
38 | CPPFLAGS=-I$(ZLIBINC) \
|
---|
39 | -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_UNISTD_H -DUSE_MMAP
|
---|
40 | CFLAGS=-O -Ae -Wl,+vnocompatwarnings +DD64 +Z
|
---|
41 | # Caution: be sure you have built zlib with the same CFLAGS.
|
---|
42 | CCFLAGS=-O -Ae -Wl,+vnocompatwarnings +DD64 +Z
|
---|
43 | ARFLAGS=rc
|
---|
44 | LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm
|
---|
45 |
|
---|
46 | # Pre-built configuration
|
---|
47 | # See scripts/pnglibconf.mak for more options
|
---|
48 | PNGLIBCONF_H_PREBUILT = scripts/pnglibconf.h.prebuilt
|
---|
49 |
|
---|
50 | OBJS = png.o pngerror.o pngget.o pngmem.o pngpread.o \
|
---|
51 | pngread.o pngrio.o pngrtran.o pngrutil.o pngset.o \
|
---|
52 | pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o
|
---|
53 |
|
---|
54 | OBJSDLL = $(OBJS:.o=.pic.o)
|
---|
55 |
|
---|
56 | .SUFFIXES: .c .o .pic.o
|
---|
57 |
|
---|
58 | .c.o:
|
---|
59 | $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
|
---|
60 |
|
---|
61 | .c.pic.o:
|
---|
62 | $(CC) -c $(CPPFLAGS) $(CFLAGS) +z -o $@ $*.c
|
---|
63 |
|
---|
64 | all: libpng.a $(LIBSO) pngtest
|
---|
65 |
|
---|
66 | pnglibconf.h: $(PNGLIBCONF_H_PREBUILT)
|
---|
67 | $(CP) $(PNGLIBCONF_H_PREBUILT) $@
|
---|
68 |
|
---|
69 | libpng.a: $(OBJS)
|
---|
70 | $(AR) $(ARFLAGS) $@ $(OBJS)
|
---|
71 | $(RANLIB) $@
|
---|
72 |
|
---|
73 | $(LIBSO): $(LIBSOMAJ)
|
---|
74 | $(LN_SF) $(LIBSOMAJ) $(LIBSO)
|
---|
75 |
|
---|
76 | $(LIBSOMAJ): $(OBJSDLL)
|
---|
77 | $(LD) -b +s \
|
---|
78 | +h $(LIBSOMAJ) -o $(LIBSOMAJ) $(OBJSDLL)
|
---|
79 |
|
---|
80 | pngtest: pngtest.o libpng.a
|
---|
81 | $(CC) -o pngtest $(CCFLAGS) pngtest.o $(LDFLAGS)
|
---|
82 |
|
---|
83 | test: pngtest
|
---|
84 | ./pngtest
|
---|
85 |
|
---|
86 | install:
|
---|
87 | @echo "The $@ target is no longer supported by this makefile."
|
---|
88 | @false
|
---|
89 |
|
---|
90 | install-static:
|
---|
91 | @echo "The $@ target is no longer supported by this makefile."
|
---|
92 | @false
|
---|
93 |
|
---|
94 | install-shared:
|
---|
95 | @echo "The $@ target is no longer supported by this makefile."
|
---|
96 | @false
|
---|
97 |
|
---|
98 | clean:
|
---|
99 | $(RM_F) *.o libpng.a pngtest pngout.png
|
---|
100 | $(RM_F) $(LIBSO) $(LIBSOMAJ)* pnglibconf.h
|
---|
101 |
|
---|
102 | # DO NOT DELETE THIS LINE -- make depend depends on it.
|
---|
103 |
|
---|
104 | png.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
105 | pngerror.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
106 | pngget.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
107 | pngmem.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
108 | pngpread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
109 | pngread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
110 | pngrio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
111 | pngrtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
112 | pngrutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
113 | pngset.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
114 | pngtrans.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
115 | pngwio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
116 | pngwrite.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
117 | pngwtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
118 | pngwutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
119 |
|
---|
120 | pngtest.o: png.h pngconf.h pnglibconf.h
|
---|