4b547324c0
Some files keep the SUN4V tags as a code reference, for the future, if any rewamped sun4v support wants to be added again. Reviewed by: marius Tested by: sbruno Approved by: re
23 lines
460 B
Makefile
23 lines
460 B
Makefile
# $FreeBSD$
|
|
|
|
BINDIR= /usr/libexec/bsdinstall
|
|
PROG= partedit
|
|
LINKS= ${BINDIR}/partedit ${BINDIR}/autopart
|
|
LDADD= -lgeom -lncursesw -lutil -ldialog -lm
|
|
|
|
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
|
|
|
|
WARNS?= 3
|
|
NO_MAN= true
|
|
|
|
.include <bsd.prog.mk>
|