Home | History | Annotate | Line # | Download | only in disklabel
Makefile revision 1.14
      1 #	from: @(#)Makefile	8.2 (Berkeley) 3/17/94
      2 #	$Id: Makefile,v 1.14 1995/02/11 02:42:21 cgd Exp $
      3 
      4 PROG=	disklabel
      5 SRCS=	disklabel.c dkcksum.c
      6 MAN=	disklabel.5 disklabel.8
      7 
      8 .if ${MACHINE} == "amiga"
      9 CFLAGS+= -D${MACHINE}
     10 .endif
     11 
     12 .if (${MACHINE} == "i386") || (${MACHINE} == "alpha")
     13 CFLAGS+= -DNUMBOOT=2
     14 .endif
     15 
     16 .if ${MACHINE} == "hp300"
     17 CFLAGS+= -DNUMBOOT=1
     18 .endif
     19 
     20 .if ${MACHINE} == "i386"
     21 CFLAGS+= -DRAWPARTITION=\'d\'
     22 .endif
     23 
     24 .include <bsd.prog.mk>
     25