Deleted Added
full compact
Makefile (218799) Makefile (221869)
1# $FreeBSD: head/usr.sbin/bsdinstall/partedit/Makefile 218799 2011-02-18 14:54:34Z nwhitehorn $
1# $FreeBSD: head/usr.sbin/bsdinstall/partedit/Makefile 221869 2011-05-14 01:53:38Z attilio $
2
3BINDIR= /usr/libexec/bsdinstall
4PROG= partedit
5LINKS= ${BINDIR}/partedit ${BINDIR}/autopart
6LDADD= -lgeom -lncursesw -lutil -ldialog -lm
7
8PARTEDIT_ARCH= ${MACHINE}
9.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
10PARTEDIT_ARCH= x86
11.endif
2
3BINDIR= /usr/libexec/bsdinstall
4PROG= partedit
5LINKS= ${BINDIR}/partedit ${BINDIR}/autopart
6LDADD= -lgeom -lncursesw -lutil -ldialog -lm
7
8PARTEDIT_ARCH= ${MACHINE}
9.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
10PARTEDIT_ARCH= x86
11.endif
12.if ${MACHINE} == "sun4v"
13PARTEDIT_ARCH= sparc64
14.endif
15.if !exists(partedit_${PARTEDIT_ARCH}.c)
16PARTEDIT_ARCH= generic
17.endif
18
19SRCS= diskeditor.c partedit.c gpart_ops.c partedit_${PARTEDIT_ARCH}.c \
20 part_wizard.c
21
22WARNS?= 3
23NO_MAN= true
24
25.include <bsd.prog.mk>
12.if !exists(partedit_${PARTEDIT_ARCH}.c)
13PARTEDIT_ARCH= generic
14.endif
15
16SRCS= diskeditor.c partedit.c gpart_ops.c partedit_${PARTEDIT_ARCH}.c \
17 part_wizard.c
18
19WARNS?= 3
20NO_MAN= true
21
22.include <bsd.prog.mk>