diff options
Diffstat (limited to 'lib/libbz2/Makefile')
-rw-r--r-- | lib/libbz2/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/libbz2/Makefile b/lib/libbz2/Makefile new file mode 100644 index 0000000..76ef0bd --- /dev/null +++ b/lib/libbz2/Makefile @@ -0,0 +1,13 @@ +# $FreeBSD$ + +BZ2DIR= ${.CURDIR}/../../contrib/bzip2 +.PATH: ${BZ2DIR} + +LIB= bz2 +SHLIB_MAJOR= 3 +SRCS= bzlib.c blocksort.c compress.c crctable.c decompress.c \ + huffman.c randtable.c +INCS= bzlib.h +CFLAGS+= -I${BZ2DIR} + +.include <bsd.lib.mk> |