beta-0.89.2
[luatex.git] / source / libs / libpng / libpng-src / scripts / makefile.freebsd
blobcad1a5aa873c66ffbd9645ba81c854f002153f2e
1 # makefile for libpng under FreeBSD
2 # Copyright (C) 2014 Glenn Randers-Pehrson and Andrey A. Chernov
3 # Copyright (C) 2002, 2007, 2009 Glenn Randers-Pehrson and Andrey A. Chernov
5 # This code is released under the libpng license.
6 # For conditions of distribution and use, see the disclaimer
7 # and license in png.h
9 PREFIX?=        /usr/local
10 SHLIB_VER?=     16
12 LIB=            png
13 SHLIB_MAJOR=    ${SHLIB_VER}
14 SHLIB_MINOR=    0
15 NO_PROFILE=     YES
16 NO_OBJ=         YES
18 # where make install puts libpng.a and png.h
19 DESTDIR=        ${PREFIX}
20 LIBDIR=         /lib
21 INCS=           png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
22 INCSDIR=        /include/libpng
23 INCDIR=         ${INCSDIR}              # for 4.x bsd.lib.mk
24 MAN=            libpng.3 libpngpf.3 png.5
25 MANDIR=         /man/man
26 SYMLINKS=       libpng/png.h ${INCSDIR}/../png.h \
27                 libpng/pngconf.h ${INCSDIR}/../pngconf.h \
28                 libpng/pnglibconf.h ${INCSDIR}/../pnglibconf.h
30 # where make install finds libz.a and zlib.h
31 ZLIBLIB=        /usr/lib
32 ZLIBINC=        /usr/include
34 LDADD+=         -lm -lz
35 #LDADD+=        -lm -lz -lssp_nonshared   # for OSVERSION < 800000 ?
37 DPADD+=         ${LIBM} ${LIBZ}
39 CPPFLAGS+=      -I. -I${ZLIBINC}
40 CFLAGS+=        -W -Wall
42 # Pre-built configuration
43 # See scripts/pnglibconf.mak for more options
44 PNGLIBCONF_H_PREBUILT= scripts/pnglibconf.h.prebuilt
46 SRCS=   png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \
47         pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \
48         pngwtran.c pngmem.c pngerror.c pngpread.c
50 .c.o:
51         $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
53 pngtest: pngtest.o libpng.a
54         ${CC} ${CFLAGS} -L. -static -o pngtest pngtest.o -L${ZLIBLIB} \
55         -lpng ${LDADD}
57 CLEANFILES= pngtest pngtest.o pngout.png
59 test: pngtest
60         ./pngtest
62 pnglibconf.h: $(PNGLIBCONF_H_PREBUILT)
63         cp $(PNGLIBCONF_H_PREBUILT) $@
65 DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
66 writelock:
67         chmod a-w *.[ch35] $(DOCS) scripts/*
69 .include <bsd.lib.mk>