freebsd-dev/lib/libbz2/Makefile
Enji Cooper 4cbc4dfef7 Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output

MFC after:    3 weeks
Sponsored by: Dell EMC Isilon
2017-01-20 03:58:50 +00:00

17 lines
266 B
Makefile

# $FreeBSD$
PACKAGE= lib${LIB}
BZ2DIR= ${SRCTOP}/contrib/bzip2
.PATH: ${BZ2DIR}
LIB= bz2
SHLIB_MAJOR= 4
SRCS= bzlib.c blocksort.c compress.c crctable.c decompress.c \
huffman.c randtable.c
INCS= bzlib.h
CFLAGS+= -I${BZ2DIR}
WARNS?= 3
.include <bsd.lib.mk>