NetBSD/sbin/disklabel/Makefile

25 lines
452 B
Makefile
Raw Normal View History

# from: @(#)Makefile 8.2 (Berkeley) 3/17/94
1995-02-11 05:42:21 +03:00
# $Id: Makefile,v 1.14 1995/02/11 02:42:21 cgd Exp $
1993-03-21 12:45:37 +03:00
PROG= disklabel
SRCS= disklabel.c dkcksum.c
1994-12-22 12:57:51 +03:00
MAN= disklabel.5 disklabel.8
1993-03-21 12:45:37 +03:00
.if ${MACHINE} == "amiga"
CFLAGS+= -D${MACHINE}
.endif
1995-02-11 05:42:21 +03:00
.if (${MACHINE} == "i386") || (${MACHINE} == "alpha")
CFLAGS+= -DNUMBOOT=2
.endif
.if ${MACHINE} == "hp300"
CFLAGS+= -DNUMBOOT=1
.endif
.if ${MACHINE} == "i386"
CFLAGS+= -DRAWPARTITION=\'d\'
.endif
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>