]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - tools/tools/bootparttest/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / tools / tools / bootparttest / Makefile
1 # $FreeBSD$
2
3 .PATH:          ${.CURDIR}/../../../sys/boot/common
4
5 BINDIR?=        /usr/bin
6
7 PROG=           bootparttest
8 NO_MAN=
9
10 SRCS=           bootparttest.c crc32.c malloc.c part.c
11
12 CFLAGS=         -I${.CURDIR}/../../../sys/boot/common -I. \
13                 -DLOADER_GPT_SUPPORT -DLOADER_MBR_SUPPORT -DPART_DEBUG
14
15 DPADD+=         ${LIBGEOM} ${LIBUTIL}
16 LDADD+=         ${LIBGEOM} ${LIBUTIL}
17 LDFLAGS+=       -lgeom -lutil
18
19 .include <bsd.prog.mk>