]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/bsdinstall/partedit/Makefile
Merge release 1.14 of bsnmp.
[FreeBSD/FreeBSD.git] / usr.sbin / bsdinstall / partedit / Makefile
1 # $FreeBSD$
2
3 BINDIR= ${LIBEXECDIR}/bsdinstall
4 PROG=   partedit
5 LINKS= ${BINDIR}/partedit ${BINDIR}/autopart \
6        ${BINDIR}/partedit ${BINDIR}/scriptedpart
7 SYMLINKS= ../libexec/bsdinstall/partedit /usr/sbin/sade
8 LIBADD+=        geom ncursesw util dialog m
9
10 PARTEDIT_ARCH= ${MACHINE}
11 .if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
12 PARTEDIT_ARCH= x86
13 .endif
14 .if !exists(partedit_${PARTEDIT_ARCH}.c)
15 PARTEDIT_ARCH= generic
16 .endif
17
18 SRCS=   diskeditor.c partedit.c gpart_ops.c partedit_${PARTEDIT_ARCH}.c \
19         part_wizard.c scripted.c
20
21 WARNS?= 3
22 MAN= sade.8
23
24 .include <bsd.prog.mk>