1# makefile for libpng for NetBSD for the standard
2# make obj && make depend && make && make test
3# make includes && make install
4# Copyright (C) 2002 Patrick R.L. Welche
5# For conditions of distribution and use, see copyright notice in png.h
6
7# You should also run makefile.netbsd
8
9LOCALBASE?=/usr/local
10LIBDIR=	${LOCALBASE}/lib
11MANDIR= ${LOCALBASE}/man
12INCSDIR=${LOCALBASE}/include/libpng12
13
14LIB=	png12
15SHLIB_MAJOR=	0
16SHLIB_MINOR=	1.2.7
17SRCS=	pnggccrd.c png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \
18		pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \
19		pngwtran.c pngmem.c pngerror.c pngpread.c
20INCS=	png.h pngconf.h
21MAN=	libpng.3 libpngpf.3 png.5
22
23CPPFLAGS+=-I${.CURDIR} -DPNG_USE_PNGGCCRD
24
25# something like this for mmx assembler, but it core dumps for me at the moment
26# .if ${MACHINE_ARCH} == "i386"
27#   CPPFLAGS+=-DPNG_THREAD_UNSAFE_OK
28#   MKLINT= no
29# .else
30    CPPFLAGS+=-DPNG_NO_ASSEMBLER_CODE
31# .endif
32
33CLEANFILES+=pngtest.o pngtest
34
35pngtest.o:	pngtest.c
36	${CC} -c ${CPPFLAGS} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}
37
38pngtest:	pngtest.o libpng.a
39	${CC} ${LDFLAGS} ${.ALLSRC} -o${.TARGET} -lz -lm
40
41test:	pngtest
42	cd ${.CURDIR} && ${.OBJDIR}/pngtest
43
44.include <bsd.lib.mk>
45