2 # Copyright (C) 2007-2009, 2014 Glenn Randers-Pehrson
3 # Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
5 # This code is released under the libpng license.
6 # For conditions of distribution and use, see the disclaimer
11 MANDIR= ${PREFIX}/man/cat
17 SRCS= png.c pngerror.c pngget.c pngmem.c pngpread.c \
18 pngread.c pngrio.c pngrtran.c pngrutil.c pngset.c pngtrans.c \
19 pngwio.c pngwrite.c pngwtran.c pngwutil.c
21 HDRS= png.h pngconf.h pnglibconf.h
24 CPPFLAGS+= -I${.CURDIR}
28 CLEANFILES+= pngtest.o pngtest pnglibconf.h
30 MAN= libpng.3 libpngpf.3 png.5
31 DOCS= ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO \
34 # Pre-built configuration
35 # See scripts/pnglibconf.mak for more options
36 PNGLIBCONF_H_PREBUILT= scripts/pnglibconf.h.prebuilt
39 $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
41 pnglibconf.h: $(PNGLIBCONF_H_PREBUILT)
42 cp $(PNGLIBCONF_H_PREBUILT) $@
45 ${CC} ${CPPFLAGS} ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET}
48 ${CC} ${LDFLAGS} ${.ALLSRC} -o ${.TARGET} -L${.OBJDIR} -lpng -lz -lm
51 cd ${.OBJDIR} && env \
52 LD_LIBRARY_PATH="${.OBJDIR}" ${.OBJDIR}/pngtest
55 if [ ! -d ${DESTDIR}${PREFIX}/include/libpng ]; then \
56 ${INSTALL} -d -o root -g wheel ${DESTDIR}${PREFIX}/include; \
58 if [ ! -d ${DESTDIR}${LIBDIR} ]; then \
59 ${INSTALL} -d -o root -g wheel ${DESTDIR}${LIBDIR}; \
61 if [ ! -d ${DESTDIR}${LIBDIR}/debug ]; then \
62 ${INSTALL} -d -o root -g wheel ${DESTDIR}${LIBDIR}/debug; \
64 if [ ! -d ${DESTDIR}${MANDIR}3 ]; then \
65 ${INSTALL} -d -o root -g wheel ${DESTDIR}${MANDIR}3; \
67 if [ ! -d ${DESTDIR}${MANDIR}5 ]; then \
68 ${INSTALL} -d -o root -g wheel ${DESTDIR}${MANDIR}5; \
70 if [ ! -d ${DESTDIR}${PREFIX}/share/doc/png ]; then \
71 ${INSTALL} -d -o root -g wheel ${DESTDIR}${PREFIX}/share/doc/png; \
75 @rm -f ${DESTDIR}${LIBDIR}/libpng_pic.a
76 @rm -f ${DESTDIR}${LIBDIR}/debug/libpng.a
77 @rm -f ${DESTDIR}${PREFIX}/include/png.h
78 @rm -f ${DESTDIR}${PREFIX}/include/pngconf.h
79 @rm -f ${DESTDIR}${PREFIX}/include/pnglibconf.h
80 @rmdir ${DESTDIR}${LIBDIR}/debug 2>/dev/null || true
81 ${INSTALL} ${INSTALL_COPY} -o ${SHAREOWN} -g ${SHAREGRP} \
82 -m ${NONBINMODE} ${HDRS} ${DESTDIR}${PREFIX}/include
83 ${INSTALL} ${INSTALL_COPY} -o ${SHAREOWN} -g ${SHAREGRP} \
84 -m ${NONBINMODE} ${HDRS} ${DESTDIR}${PREFIX}/include
85 ${INSTALL} ${INSTALL_COPY} -o ${SHAREOWN} -g ${SHAREGRP} \
86 -m ${NONBINMODE} ${DOCS} ${DESTDIR}${PREFIX}/share/doc/png