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
7 # You should also run makefile.netbsd
10 LIBDIR= ${LOCALBASE}/lib
11 MANDIR= ${LOCALBASE}/man
12 INCSDIR=${LOCALBASE}/include/libpng12
17 SRCS= 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
21 MAN= libpng.3 libpngpf.3 png.5
23 CPPFLAGS+=-I${.CURDIR} -DPNG_USE_PNGGCCRD
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
30 CPPFLAGS+=-DPNG_NO_ASSEMBLER_CODE
33 CLEANFILES+=pngtest.o pngtest
36 ${CC} -c ${CPPFLAGS} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}
38 pngtest: pngtest.o libpng.a
39 ${CC} ${LDFLAGS} ${.ALLSRC} -o${.TARGET} -lz -lm
42 cd ${.CURDIR} && ${.OBJDIR}/pngtest