Mercurial > fife-parpg
comparison ext/libpng-1.2.29/scripts/makefile.ne12bsd @ 0:4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
author | mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Sun, 29 Jun 2008 18:44:17 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4a0efb7baf70 |
---|---|
1 # makefile for libpng for NetBSD for the standard | |
2 # make obj && make depend && make && make test | |
3 # make includes && make install | |
4 # Copyright (C) 2002 Patrick R.L. Welche | |
5 # Copyright (C) 2007 Glenn Randers-Pehrson | |
6 # For conditions of distribution and use, see copyright notice in png.h | |
7 | |
8 # You should also run makefile.netbsd | |
9 | |
10 LOCALBASE?=/usr/local | |
11 LIBDIR= ${LOCALBASE}/lib | |
12 MANDIR= ${LOCALBASE}/man | |
13 INCSDIR=${LOCALBASE}/include/libpng12 | |
14 | |
15 LIB= png12 | |
16 SHLIB_MAJOR= 0 | |
17 SHLIB_MINOR= 1.2.29 | |
18 SRCS= png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \ | |
19 pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \ | |
20 pngwtran.c pngmem.c pngerror.c pngpread.c | |
21 INCS= png.h pngconf.h | |
22 MAN= libpng.3 libpngpf.3 png.5 | |
23 | |
24 CPPFLAGS+=-I${.CURDIR} | |
25 | |
26 # something like this for mmx assembler, but it core dumps for me at the moment | |
27 # .if ${MACHINE_ARCH} == "i386" | |
28 # CPPFLAGS+=-DPNG_THREAD_UNSAFE_OK | |
29 # MKLINT= no | |
30 # .else | |
31 CPPFLAGS+=-DPNG_NO_MMX_CODE | |
32 # .endif | |
33 | |
34 CLEANFILES+=pngtest.o pngtest | |
35 | |
36 pngtest.o: pngtest.c | |
37 ${CC} -c ${CPPFLAGS} ${CFLAGS} ${.ALLSRC} -o ${.TARGET} | |
38 | |
39 pngtest: pngtest.o libpng.a | |
40 ${CC} ${LDFLAGS} ${.ALLSRC} -o${.TARGET} -lz -lm | |
41 | |
42 test: pngtest | |
43 cd ${.CURDIR} && ${.OBJDIR}/pngtest | |
44 | |
45 .include <bsd.lib.mk> |