xref: /freebsd/usr.sbin/bsdinstall/partedit/Makefile (revision 7fdd45b0913882a815552e5a43e25e2a99b018ff)
12118f387SNathan Whitehorn# $FreeBSD$
22118f387SNathan Whitehorn
3*7fdd45b0SBryan DreweryBINDIR= ${LIBEXECDIR}/bsdinstall
42118f387SNathan WhitehornPROG=	partedit
55eca7e06SNathan WhitehornLINKS= ${BINDIR}/partedit ${BINDIR}/autopart \
65eca7e06SNathan Whitehorn       ${BINDIR}/partedit ${BINDIR}/scriptedpart
7ec8edf93SNathan WhitehornSYMLINKS= ${BINDIR}/partedit /usr/sbin/sade
8c6db8143SBaptiste DaroussinLIBADD+=	geom ncursesw util dialog m
92118f387SNathan Whitehorn
102118f387SNathan WhitehornPARTEDIT_ARCH= ${MACHINE}
112118f387SNathan Whitehorn.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
122118f387SNathan WhitehornPARTEDIT_ARCH= x86
132118f387SNathan Whitehorn.endif
142118f387SNathan Whitehorn.if !exists(partedit_${PARTEDIT_ARCH}.c)
152118f387SNathan WhitehornPARTEDIT_ARCH= generic
162118f387SNathan Whitehorn.endif
172118f387SNathan Whitehorn
182118f387SNathan WhitehornSRCS=	diskeditor.c partedit.c gpart_ops.c partedit_${PARTEDIT_ARCH}.c \
195eca7e06SNathan Whitehorn	part_wizard.c scripted.c
202118f387SNathan Whitehorn
212118f387SNathan WhitehornWARNS?=	3
222befb361SNathan WhitehornMAN= sade.8
232118f387SNathan Whitehorn
242118f387SNathan Whitehorn.include <bsd.prog.mk>
25