makefile.freebsd 1.5 KB
Newer Older
1
# makefile for libpng under FreeBSD
2
# Copyright (C) 2002, 2006 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 pngdefs.h
18 19 20 21 22 23
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
24
		libpng/pngdefs.h ${INCSDIR}/../pngdefs.h
25 26
LDADD+=         -lm -lz
DPADD+=         ${LIBM} ${LIBZ}
27

28
all: pngdefs.h
29

30 31
pngdefs.h:
	echo "/* pngdefs.h was built by makefile.freebsd */" > pngdefs.h
32
.if (${MACHINE_ARCH} != "i386")
33 34
	/* uncomment this if you don't need thread safety */
	# echo "#define PNG_THREAD_UNSAFE_OK" >> pngdefs.h
35
.else
36
	echo "#define PNG_NO_MMX_CODE" >> pngdefs.h
37 38
.endif

39 40 41
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 pnggccrd.c
42 43

pngtest: pngtest.o libpng.a
44 45 46
	${CC} ${CFLAGS} -L. -static -o pngtest pngtest.o -lpng -lz -lm

CLEANFILES= pngtest pngtest.o pngout.png
47 48 49 50 51 52 53 54

test: pngtest
	./pngtest

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

55
.include <bsd.lib.mk>