]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - usr.sbin/bsdinstall/partedit/Makefile
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / usr.sbin / bsdinstall / partedit / Makefile
1 # $FreeBSD$
2
3 BINDIR= /usr/libexec/bsdinstall
4 PROG=   partedit
5 LINKS= ${BINDIR}/partedit ${BINDIR}/autopart
6 LDADD=  -lgeom -lncursesw -lutil -ldialog -lm
7
8 PARTEDIT_ARCH= ${MACHINE}
9 .if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
10 PARTEDIT_ARCH= x86
11 .endif
12 .if !exists(partedit_${PARTEDIT_ARCH}.c)
13 PARTEDIT_ARCH= generic
14 .endif
15
16 SRCS=   diskeditor.c partedit.c gpart_ops.c partedit_${PARTEDIT_ARCH}.c \
17         part_wizard.c
18
19 WARNS?= 3
20 NO_MAN= true
21
22 .include <bsd.prog.mk>