minix/lib/libbz2/Makefile
2011-11-18 11:11:04 +01:00

41 lines
843 B
Makefile

# $NetBSD: Makefile,v 1.14 2008/08/29 00:02:22 gmcgarry Exp $
.if defined(__MINIX)
# ssp-buffer-size=0, __SSP_FORTIFY_LEVEL=0
USE_FORT=no
.else
USE_FORT?= yes # data driven bugs?
.endif
NOMAN= # defined
.include <bsd.own.mk>
LIB= bz2
DIST= ${NETBSDSRCDIR}/dist/bzip2
.PATH: ${DIST}
SRCS= blocksort.c huffman.c crctable.c randtable.c compress.c \
decompress.c bzlib.c
INCS= bzlib.h
INCSDIR= /usr/include
# XXX huffman.c gets mis-compiled with 2.95.3
.if ${MACHINE_ARCH} == "vax"
COPTS+= -O0
.endif
# XXX blocksort.c gets mis-compiled with 4.1
.if (${MACHINE_ARCH} == "sh3el" || ${MACHINE_ARCH} == "sh3eb") && \
(defined(HAVE_GCC) && ${HAVE_GCC} == 4)
COPTS.blocksort.c+= -fno-loop-optimize
.endif
.if ${MKSHARE} != "no"
FILESDIR= ${HTMLDOCDIR}/bzip2
FILES= manual.html
.endif
.include <bsd.info.mk>
.include <bsd.lib.mk>