makefile.ne12bsd 1.3 KB
Newer Older
1 2 3 4
# makefile for libpng for NetBSD for the standard
# make obj && make depend && make && make test
# make includes && make install
# Copyright (C) 2002 Patrick R.L. Welche
5
# Copyright (C) 2007, 2009 Glenn Randers-Pehrson
6 7 8 9

# This code is released under the libpng license.
# For conditions of distribution and use, see the disclaimer
# and license in png.h
10 11 12 13 14 15 16 17 18 19

# You should also run makefile.netbsd

LOCALBASE?=/usr/local
LIBDIR=	${LOCALBASE}/lib
MANDIR= ${LOCALBASE}/man
INCSDIR=${LOCALBASE}/include/libpng12

LIB=	png12
SHLIB_MAJOR=	0
20
SHLIB_MINOR=	1.2.39beta04
21 22 23
SRCS=	png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \
	pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \
	pngwtran.c pngmem.c pngerror.c pngpread.c
24 25 26
INCS=	png.h pngconf.h
MAN=	libpng.3 libpngpf.3 png.5

27
CPPFLAGS+=-I${.CURDIR}
28

29 30
# We should be able to do something like this instead of the manual
# uncommenting, but it core dumps for me at the moment:
31 32 33 34
# .if ${MACHINE_ARCH} == "i386"
#   CPPFLAGS+=-DPNG_THREAD_UNSAFE_OK
#   MKLINT= no
# .else
35
    CPPFLAGS+=-DPNG_NO_MMX_CODE
36 37 38 39 40 41 42 43 44 45 46 47 48 49
# .endif

CLEANFILES+=pngtest.o pngtest

pngtest.o:	pngtest.c
	${CC} -c ${CPPFLAGS} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}

pngtest:	pngtest.o libpng.a
	${CC} ${LDFLAGS} ${.ALLSRC} -o${.TARGET} -lz -lm

test:	pngtest
	cd ${.CURDIR} && ${.OBJDIR}/pngtest

.include <bsd.lib.mk>