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 libpng license.
5
# For conditions of distribution and use, see the disclaimer
6
# and license in png.h
7

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

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

17 18 19
# where make install puts libpng.a and png.h
DESTDIR=	${PREFIX}
LIBDIR=		/lib
20
INCS=		png.h pngconf.h pngpriv.h
21 22 23 24 25 26 27 28
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}
29

30
CFLAGS+= -DPNG_CONFIGURE_LIBPNG -I.
31

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

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

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

test: pngtest
	./pngtest

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

48
.include <bsd.lib.mk>