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
# For conditions of distribution and use, see copyright notice in png.h

5
PREFIX?=        /usr/local
6
SHLIB_VER?=     %SONUM%
7

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

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

27
CFLAGS+= -I.
28

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

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

CLEANFILES= pngtest pngtest.o pngout.png
37 38 39 40 41 42 43 44

test: pngtest
	./pngtest

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

45
.include <bsd.lib.mk>