a191ba5195
Reduce overlinking
25 lines
557 B
Makefile
25 lines
557 B
Makefile
# $FreeBSD$
|
|
|
|
BINDIR= /usr/libexec/bsdinstall
|
|
PROG= partedit
|
|
LINKS= ${BINDIR}/partedit ${BINDIR}/autopart \
|
|
${BINDIR}/partedit ${BINDIR}/scriptedpart
|
|
SYMLINKS= ${BINDIR}/partedit /usr/sbin/sade
|
|
LIBADD+= geom ncursesw util dialog m
|
|
|
|
PARTEDIT_ARCH= ${MACHINE}
|
|
.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
|
|
PARTEDIT_ARCH= x86
|
|
.endif
|
|
.if !exists(partedit_${PARTEDIT_ARCH}.c)
|
|
PARTEDIT_ARCH= generic
|
|
.endif
|
|
|
|
SRCS= diskeditor.c partedit.c gpart_ops.c partedit_${PARTEDIT_ARCH}.c \
|
|
part_wizard.c scripted.c
|
|
|
|
WARNS?= 3
|
|
MAN= sade.8
|
|
|
|
.include <bsd.prog.mk>
|