]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - tools/tools/bootparttest/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.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>