2001-04-27 09:29:32 -04:00
|
|
|
# makefile for libpng for NetBSD for the standard
|
|
|
|
# make obj && make depend && make && make test
|
|
|
|
# make includes && make install
|
2002-04-15 10:25:51 -04:00
|
|
|
# Copyright (C) 2002 Patrick R.L. Welche
|
2014-01-20 13:36:30 -05:00
|
|
|
# Copyright (C) 2007-2009, 2014 Glenn Randers-Pehrson
|
2009-06-24 10:31:28 -04:00
|
|
|
#
|
2009-06-26 22:46:52 -04:00
|
|
|
# This code is released under the libpng license.
|
2009-06-25 14:43:50 -04:00
|
|
|
# For conditions of distribution and use, see the disclaimer
|
2009-06-24 11:27:36 -04:00
|
|
|
# and license in png.h
|
2001-04-20 11:32:10 -04:00
|
|
|
|
2001-04-27 09:29:32 -04:00
|
|
|
LOCALBASE?=/usr/local
|
|
|
|
LIBDIR= ${LOCALBASE}/lib
|
|
|
|
MANDIR= ${LOCALBASE}/man
|
2009-12-04 09:42:32 -05:00
|
|
|
INCSDIR=${LOCALBASE}/include
|
2001-04-20 11:32:10 -04:00
|
|
|
|
2011-11-24 15:40:36 -05:00
|
|
|
SHLIB_MAJOR= 16
|
2019-04-14 14:10:32 -04:00
|
|
|
SHLIB_MINOR= 1.6.37
|
2018-12-30 13:34:15 -05:00
|
|
|
|
|
|
|
LIB= png
|
|
|
|
SRCS= png.c pngerror.c pngget.c pngmem.c pngpread.c \
|
|
|
|
pngread.c pngrio.c pngrtran.c pngrutil.c pngset.c pngtrans.c \
|
|
|
|
pngwio.c pngwrite.c pngwtran.c pngwutil.c
|
2011-12-17 10:57:00 -05:00
|
|
|
INCS= png.h pngconf.h pnglibconf.h
|
2001-04-27 09:29:32 -04:00
|
|
|
MAN= libpng.3 libpngpf.3 png.5
|
2001-04-20 11:32:10 -04:00
|
|
|
|
2006-05-11 10:43:09 -04:00
|
|
|
CPPFLAGS+=-I${.CURDIR}
|
2001-04-20 11:32:10 -04:00
|
|
|
|
2014-03-22 14:13:11 -04:00
|
|
|
# Pre-built configuration
|
|
|
|
# See scripts/pnglibconf.mak for more options
|
|
|
|
PNGLIBCONF_H_PREBUILT= scripts/pnglibconf.h.prebuilt
|
|
|
|
|
2006-05-11 10:43:09 -04:00
|
|
|
# We should be able to do something like this instead of the manual
|
|
|
|
# uncommenting, but it core dumps for me at the moment:
|
2001-04-27 09:29:32 -04:00
|
|
|
# .if ${MACHINE_ARCH} == "i386"
|
|
|
|
# MKLINT= no
|
|
|
|
# .endif
|
2001-04-20 11:32:10 -04:00
|
|
|
|
2010-04-17 09:17:51 -04:00
|
|
|
CLEANFILES+=pngtest.o pngtest pnglibconf.h
|
|
|
|
|
2014-01-12 11:44:01 -05:00
|
|
|
.c.o:
|
2018-12-30 13:34:15 -05:00
|
|
|
${CC} -c ${CPPFLAGS} ${CFLAGS} -o $@ $<
|
2014-01-12 11:44:01 -05:00
|
|
|
|
2018-12-30 13:34:15 -05:00
|
|
|
pnglibconf.h: ${PNGLIBCONF_H_PREBUILT}
|
|
|
|
cp ${PNGLIBCONF_H_PREBUILT} $@
|
2009-05-02 16:36:08 -04:00
|
|
|
|
2001-04-27 09:29:32 -04:00
|
|
|
pngtest.o: pngtest.c
|
|
|
|
${CC} -c ${CPPFLAGS} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}
|
2001-04-20 11:32:10 -04:00
|
|
|
|
2001-04-27 09:29:32 -04:00
|
|
|
pngtest: pngtest.o libpng.a
|
2018-12-30 13:34:15 -05:00
|
|
|
${CC} ${LDFLAGS} ${.ALLSRC} -o ${.TARGET} -lz -lm
|
2001-04-20 11:32:10 -04:00
|
|
|
|
2001-04-27 09:29:32 -04:00
|
|
|
test: pngtest
|
|
|
|
cd ${.CURDIR} && ${.OBJDIR}/pngtest
|
2001-04-20 11:32:10 -04:00
|
|
|
|
2001-04-27 09:29:32 -04:00
|
|
|
.include <bsd.lib.mk>
|