NetBSD/sbin/disklabel/Makefile

23 lines
444 B
Makefile
Raw Normal View History

1997-03-19 00:27:16 +03:00
# $NetBSD: Makefile,v 1.23 1997/03/18 21:27:16 christos Exp $
# @(#)Makefile 8.2 (Berkeley) 3/17/94
1993-03-21 12:45:37 +03:00
PROG= disklabel
SRCS= disklabel.c dkcksum.c interact.c
1994-12-22 12:57:51 +03:00
MAN= disklabel.5 disklabel.8
LDADD+= -lutil
DPADD+= ${LIBUTIL}
1993-03-21 12:45:37 +03:00
.if (${MACHINE} == "i386")
CFLAGS+= -DNUMBOOT=2
.endif
.if (${MACHINE} == "hp300") || (${MACHINE} == "vax")
CFLAGS+= -DNUMBOOT=1
.endif
.if ${MACHINE} == "i386"
CFLAGS+= -DRAWPARTITION=\'d\'
.endif
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>