makefile.netbsd 1.5 KB
Newer Older
1 2 3
# makefile for libpng for NetBSD for the standard
# make obj && make depend && make && make test
# make includes && make install
4
# Copyright (C) 2002 Patrick R.L. Welche
5
# Copyright (C) 2007-2009, 2014 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
10

11
# You should also run makefile.ne16bsd
12

13 14 15
LOCALBASE?=/usr/local
LIBDIR=	${LOCALBASE}/lib
MANDIR= ${LOCALBASE}/man
16
INCSDIR=${LOCALBASE}/include
17

18
LIB=	png
19
SHLIB_MAJOR=	16
20
SHLIB_MINOR=	1.6.30beta01
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
INCS=	png.h pngconf.h pnglibconf.h
25
MAN=	libpng.3 libpngpf.3 png.5
26

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

29 30 31 32
# Pre-built configuration
# See scripts/pnglibconf.mak for more options
PNGLIBCONF_H_PREBUILT= scripts/pnglibconf.h.prebuilt

33 34
# We should be able to do something like this instead of the manual
# uncommenting, but it core dumps for me at the moment:
35 36 37
# .if ${MACHINE_ARCH} == "i386"
#   MKLINT= no
# .endif
38

39 40
CLEANFILES+=pngtest.o pngtest pnglibconf.h

41 42 43
.c.o:
	$(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<

44
pnglibconf.h: $(PNGLIBCONF_H_PREBUILT)
45
	cp $(PNGLIBCONF_H_PREBUILT) $@
46

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

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

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

56
.include <bsd.lib.mk>