]> git.saurik.com Git - wxWidgets.git/blame - src/png/scripts/makefile.ne12bsd
Merge libpng 1.6.2 into the trunk.
[wxWidgets.git] / src / png / scripts / makefile.ne12bsd
CommitLineData
0272a10d
VZ
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
b61cc19c
PC
5# Copyright (C) 2007, 2009 Glenn Randers-Pehrson
6#
7# This code is released under the libpng license.
8# For conditions of distribution and use, see the disclaimer
9# and license in png.h
0272a10d
VZ
10
11# You should also run makefile.netbsd
12
13LOCALBASE?=/usr/local
14LIBDIR= ${LOCALBASE}/lib
15MANDIR= ${LOCALBASE}/man
fff5f7d5 16INCSDIR=${LOCALBASE}/include/libpng16
0272a10d 17
fff5f7d5 18LIB= png16
0272a10d 19SHLIB_MAJOR= 0
fff5f7d5 20SHLIB_MINOR= 1.6.2
0272a10d
VZ
21SRCS= png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \
22 pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \
23 pngwtran.c pngmem.c pngerror.c pngpread.c
9c0d9ce3 24INCS= png.h pngconf.h pnglibconf.h
0272a10d
VZ
25MAN= libpng.3 libpngpf.3 png.5
26
27CPPFLAGS+=-I${.CURDIR}
28
b61cc19c
PC
29# We should be able to do something like this instead of the manual
30# uncommenting, but it core dumps for me at the moment:
0272a10d 31# .if ${MACHINE_ARCH} == "i386"
0272a10d 32# MKLINT= no
0272a10d
VZ
33# .endif
34
9c0d9ce3
DS
35CLEANFILES+=pngtest.o pngtest pnglibconf.h
36
37# see scripts/pnglibconf.mak for more options
38pnglibconf.h: scripts/pnglibconf.h.prebuilt
39 cp scripts/pnglibconf.h.prebuilt $@
0272a10d
VZ
40
41pngtest.o: pngtest.c
42 ${CC} -c ${CPPFLAGS} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}
43
44pngtest: pngtest.o libpng.a
45 ${CC} ${LDFLAGS} ${.ALLSRC} -o${.TARGET} -lz -lm
46
47test: pngtest
48 cd ${.CURDIR} && ${.OBJDIR}/pngtest
49
50.include <bsd.lib.mk>