makefile.freebsd 1.2 KB
Newer Older
1
# makefile for libpng under FreeBSD
2
# Copyright (C) 2002, 2007, 2009 Glenn Randers-Pehrson and Andrey A. Chernov
3 4
#
# This code is released under the zlib-libpng license.
5 6
# For conditions of distribution and use, see copyright notice in png.h

7
PREFIX?=        /usr/local
8
SHLIB_VER?=     %SONUM%
9

10 11 12 13 14
LIB=		png
SHLIB_MAJOR=	${SHLIB_VER}
SHLIB_MINOR=	0
NOPROFILE=	YES
NOOBJ=          YES
15

16 17 18
# where make install puts libpng.a and png.h
DESTDIR=	${PREFIX}
LIBDIR=		/lib
19
INCS=		png.h pngconf.h pngpriv.h
20 21 22 23 24 25 26 27
INCSDIR=	/include/libpng
INCDIR=		${INCSDIR}		# for 4.x bsd.lib.mk
MAN=		libpng.3 libpngpf.3 png.5
MANDIR=		/man/man
SYMLINKS=       libpng/png.h ${INCSDIR}/../png.h \
		libpng/pngconf.h ${INCSDIR}/../pngconf.h
LDADD+=         -lm -lz
DPADD+=         ${LIBM} ${LIBZ}
28

29
CFLAGS+= -I.
30

31 32
SRCS=	png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \
	pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \
33
	pngwtran.c pngmem.c pngerror.c pngpread.c
34 35

pngtest: pngtest.o libpng.a
36 37 38
	${CC} ${CFLAGS} -L. -static -o pngtest pngtest.o -lpng -lz -lm

CLEANFILES= pngtest pngtest.o pngout.png
39 40 41 42 43 44 45 46

test: pngtest
	./pngtest

DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
writelock:
	chmod a-w *.[ch35] $(DOCS) scripts/*

47
.include <bsd.lib.mk>