File: Makefile

package info (click to toggle)
kfreebsd-10 10.1~svn274115-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 226,112 kB
  • sloc: ansic: 4,140,771; asm: 48,128; makefile: 11,880; yacc: 4,834; awk: 3,455; lex: 1,710; sh: 1,234; python: 203; perl: 89; sed: 4
file content (17 lines) | stat: -rw-r--r-- 648 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# $FreeBSD$

.PATH: ${.CURDIR}/../../../geom/uncompress \
    ${.CURDIR}/../../../contrib/xz-embedded/freebsd/ \
    ${.CURDIR}/../../../contrib/xz-embedded/linux/lib/xz/ \
    ${.CURDIR}/../../../contrib/xz-embedded/linux/include/linux/ \
    ${.CURDIR}/../../../net

KMOD=	geom_uncompress
CFLAGS+= -I${.CURDIR}/../../../geom/uncompress/ \
	-I${.CURDIR}/../../../contrib/xz-embedded/freebsd \
	-I${.CURDIR}/../../../contrib/xz-embedded/linux/lib/xz/
SRCS=	g_uncompress.c xz_crc32.c xz_dec_bcj.c xz_dec_lzma2.c xz_dec_stream.c \
    xz_malloc.c
SRCS+=	xz.h xz_config.h xz_lzma2.h xz_malloc.h xz_private.h xz_stream.h zlib.h

.include <bsd.kmod.mk>