Glenn Randers-Pehrson | 4fb046a | 2002-04-15 09:25:51 -0500 | [diff] [blame] | 1 | # makefile for libpng for NetBSD for the standard |
| 2 | # make obj && make depend && make && make test |
| 3 | # make includes && make install |
Glenn Randers-Pehrson | b3870ab | 2006-05-11 09:43:09 -0500 | [diff] [blame] | 4 | # Copyright (C) 2006 Glenn Randers-Pehrson |
Glenn Randers-Pehrson | 4fb046a | 2002-04-15 09:25:51 -0500 | [diff] [blame] | 5 | # Copyright (C) 2002 Patrick R.L. Welche |
| 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 |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 13 | INCSDIR=${LOCALBASE}/include/libpng14 |
Glenn Randers-Pehrson | 4fb046a | 2002-04-15 09:25:51 -0500 | [diff] [blame] | 14 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 15 | LIB= png14 |
Glenn Randers-Pehrson | 4fb046a | 2002-04-15 09:25:51 -0500 | [diff] [blame] | 16 | SHLIB_MAJOR= 0 |
Glenn Randers-Pehrson | 1eb14e9 | 2008-12-10 07:14:45 -0600 | [diff] [blame^] | 17 | SHLIB_MINOR= 1.4.0beta46 |
Glenn Randers-Pehrson | 4fb046a | 2002-04-15 09:25:51 -0500 | [diff] [blame] | 18 | SRCS= pnggccrd.c 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 |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 21 | INCS= png.h pngconf.h pngpriv.h |
Glenn Randers-Pehrson | 4fb046a | 2002-04-15 09:25:51 -0500 | [diff] [blame] | 22 | MAN= libpng.3 libpngpf.3 png.5 |
| 23 | |
Glenn Randers-Pehrson | b3870ab | 2006-05-11 09:43:09 -0500 | [diff] [blame] | 24 | CPPFLAGS+=-I${.CURDIR} |
Glenn Randers-Pehrson | 4fb046a | 2002-04-15 09:25:51 -0500 | [diff] [blame] | 25 | |
| 26 | CLEANFILES+=pngtest.o pngtest |
| 27 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 28 | all: pngconf.h pngdefs.h |
Glenn Randers-Pehrson | 3424ee7 | 2006-07-12 13:33:47 -0500 | [diff] [blame] | 29 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 30 | pngdefs.h: |
| 31 | echo "/* pngdefs.h was built by makefile.netbsd */" > pngdefs.h |
Glenn Randers-Pehrson | b3870ab | 2006-05-11 09:43:09 -0500 | [diff] [blame] | 32 | /* if you don't want to use the intel MMX code, uncomment this */ |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 33 | # echo "#define PNG_NO_MMX_CODE" >> pngdefs.h |
Glenn Randers-Pehrson | b3870ab | 2006-05-11 09:43:09 -0500 | [diff] [blame] | 34 | /* if you don't need thread safety you can uncomment this */ |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 35 | # echo "#define PNG_THREAD_UNSAFE_OK" >> pngdefs.h |
Glenn Randers-Pehrson | b3870ab | 2006-05-11 09:43:09 -0500 | [diff] [blame] | 36 | |
| 37 | # We should be able to do something like this instead of the manual |
| 38 | # uncommenting, but it core dumps for me at the moment: |
| 39 | # .if ${MACHINE_ARCH} == "i386" |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 40 | # echo "#define PNG_THREAD_UNSAFE_OK" >> pngdefs.h |
Glenn Randers-Pehrson | b3870ab | 2006-05-11 09:43:09 -0500 | [diff] [blame] | 41 | # MKLINT= no |
| 42 | # .else |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 43 | # echo "#define PNG_NO_MMX_CODE" >> pngdefs.h |
Glenn Randers-Pehrson | b3870ab | 2006-05-11 09:43:09 -0500 | [diff] [blame] | 44 | # .endif |
| 45 | |
Glenn Randers-Pehrson | 4fb046a | 2002-04-15 09:25:51 -0500 | [diff] [blame] | 46 | pngtest.o: pngtest.c |
| 47 | ${CC} -c ${CPPFLAGS} ${CFLAGS} ${.ALLSRC} -o ${.TARGET} |
| 48 | |
| 49 | pngtest: pngtest.o libpng.a |
| 50 | ${CC} ${LDFLAGS} ${.ALLSRC} -o${.TARGET} -lz -lm |
| 51 | |
| 52 | test: pngtest |
| 53 | cd ${.CURDIR} && ${.OBJDIR}/pngtest |
| 54 | |
| 55 | .include <bsd.lib.mk> |