1 | # makefile for libpng, HPUX (10.20 and 11.00) using the ANSI/C product.
|
---|
2 | # Copyright (C) 2020-2022 Cosmin Truta
|
---|
3 | # Copyright (C) 1999-2002, 2006, 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 | # CPPFLAGS=-DHAVE_UNISTD -DUSE_MAP
|
---|
19 | # CFLAGS=-O1 -fPIC
|
---|
20 | # LDSHARED=ld -b
|
---|
21 | # SHAREDLIB=libz.sl
|
---|
22 |
|
---|
23 | # Library name:
|
---|
24 | LIBNAME=libpng16
|
---|
25 | PNGMAJ=16
|
---|
26 |
|
---|
27 | # Shared library names:
|
---|
28 | LIBSO=$(LIBNAME).sl
|
---|
29 | LIBSOMAJ=$(LIBNAME).sl.$(PNGMAJ)
|
---|
30 |
|
---|
31 | # Utilities:
|
---|
32 | CC=cc
|
---|
33 | AR_RC=ar rc
|
---|
34 | RANLIB=ranlib
|
---|
35 | MKDIR_P=mkdir -p
|
---|
36 | LN_SF=ln -sf
|
---|
37 | RM_F=/bin/rm -f
|
---|
38 |
|
---|
39 | CPPFLAGS=-I$(ZLIBINC)
|
---|
40 | CFLAGS=-O -Ae +DA1.1 +DS2.0
|
---|
41 | # Caution: be sure you have built zlib with the same CFLAGS.
|
---|
42 | CCFLAGS=-O -Ae +DA1.1 +DS2.0
|
---|
43 | LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm
|
---|
44 |
|
---|
45 | # Pre-built configuration
|
---|
46 | # See scripts/pnglibconf.mak for more options
|
---|
47 | PNGLIBCONF_H_PREBUILT = scripts/pnglibconf.h.prebuilt
|
---|
48 |
|
---|
49 | OBJS = png.o pngerror.o pngget.o pngmem.o pngpread.o \
|
---|
50 | pngread.o pngrio.o pngrtran.o pngrutil.o pngset.o \
|
---|
51 | pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o
|
---|
52 |
|
---|
53 | OBJSDLL = $(OBJS:.o=.pic.o)
|
---|
54 |
|
---|
55 | .SUFFIXES: .c .o .pic.o
|
---|
56 |
|
---|
57 | .c.o:
|
---|
58 | $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
|
---|
59 |
|
---|
60 | .c.pic.o:
|
---|
61 | $(CC) -c $(CPPFLAGS) $(CFLAGS) +z -o $@ $*.c
|
---|
62 |
|
---|
63 | all: libpng.a $(LIBSO) pngtest
|
---|
64 |
|
---|
65 | pnglibconf.h: $(PNGLIBCONF_H_PREBUILT)
|
---|
66 | $(CP) $(PNGLIBCONF_H_PREBUILT) $@
|
---|
67 |
|
---|
68 | libpng.a: $(OBJS)
|
---|
69 | $(AR_RC) $@ $(OBJS)
|
---|
70 | $(RANLIB) $@
|
---|
71 |
|
---|
72 | $(LIBSO): $(LIBSOMAJ)
|
---|
73 | $(LN_SF) $(LIBSOMAJ) $(LIBSO)
|
---|
74 |
|
---|
75 | $(LIBSOMAJ): $(OBJSDLL)
|
---|
76 | $(LD) -b +s \
|
---|
77 | +h $(LIBSOMAJ) -o $(LIBSOMAJ) $(OBJSDLL)
|
---|
78 |
|
---|
79 | pngtest: pngtest.o libpng.a
|
---|
80 | $(CC) -o pngtest $(CCFLAGS) pngtest.o $(LDFLAGS)
|
---|
81 |
|
---|
82 | test: pngtest
|
---|
83 | ./pngtest
|
---|
84 |
|
---|
85 | install:
|
---|
86 | @echo "The $@ target is no longer supported by this makefile."
|
---|
87 | @false
|
---|
88 |
|
---|
89 | install-static:
|
---|
90 | @echo "The $@ target is no longer supported by this makefile."
|
---|
91 | @false
|
---|
92 |
|
---|
93 | install-shared:
|
---|
94 | @echo "The $@ target is no longer supported by this makefile."
|
---|
95 | @false
|
---|
96 |
|
---|
97 | clean:
|
---|
98 | $(RM_F) *.o libpng.a pngtest pngout.png
|
---|
99 | $(RM_F) $(LIBSO) $(LIBSOMAJ)* pnglibconf.h
|
---|
100 |
|
---|
101 | # DO NOT DELETE THIS LINE -- make depend depends on it.
|
---|
102 |
|
---|
103 | png.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
104 | pngerror.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
105 | pngget.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
106 | pngmem.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
107 | pngpread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
108 | pngread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
109 | pngrio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
110 | pngrtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
111 | pngrutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
112 | pngset.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
113 | pngtrans.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
114 | pngwio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
115 | pngwrite.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
116 | pngwtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
117 | pngwutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
---|
118 |
|
---|
119 | pngtest.o: png.h pngconf.h pnglibconf.h
|
---|