]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tools/tools/bootparttest/Makefile
MFC r325834,r325997,326502: Move sys/boot to stand/
[FreeBSD/FreeBSD.git] / tools / tools / bootparttest / Makefile
1 # $FreeBSD$
2
3 .PATH:          ${SRCTOP}/stand/common
4
5 BINDIR?=        /usr/bin
6
7 PROG=           bootparttest
8 MAN=
9
10 SRCS=           bootparttest.c crc32.c stub.c part.c disk.c
11
12 CFLAGS=         -I${SRCTOP}/stand/common \
13                 -DLOADER_GPT_SUPPORT -DLOADER_MBR_SUPPORT -DPART_DEBUG \
14                 -DDISK_DEBUG
15
16 DPADD+=         ${LIBGEOM}
17 LDADD+=         ${LIBGEOM}
18 LDFLAGS+=       -lgeom
19
20 .include <bsd.prog.mk>