blob: 2251fdaa599d293f751aeab68e51daeabdad9084 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $NetBSD: Makefile,v 1.28 2003/04/30 19:49:01 dsl Exp $
SUBDIR= mbr
.if (${MACHINE} == "i386" || \
${MACHINE} == "bebox" || \
${MACHINE} == "cobalt" || \
${MACHINE} == "ofppc" || \
${MACHINE} == "hpcarm" || \
${MACHINE} == "hpcmips" || \
${MACHINE} == "hpcsh" || \
${MACHINE} == "arc" || \
${MACHINE} == "prep" || \
${MACHINE} == "playstation2" || \
${MACHINE} == "mvmeppc" || \
${MACHINE} == "netwinder" || \
${MACHINE} == "macppc" || \
${MACHINE} == "amd64")
PROG= fdisk
SRCS= fdisk.c
DPADD+= ${LIBUTIL}
LDADD+= -lutil
.endif
MAN= fdisk.8
.if ${MACHINE} == "arc"
CPPFLAGS+= -D_PATH_DEFDISK='"/dev/rsd0d"'
.endif
.if ${MACHINE} == "netwinder"
CPPFLAGS+= -D_PATH_DEFDISK='"/dev/rwd0c"'
.endif
.include <bsd.prog.mk>
.include <bsd.subdir.mk>
|