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