Home | History | Annotate | Line # | Download | only in disklabel
Makefile revision 1.31.2.1
      1  1.31.2.1     perry #	$NetBSD: Makefile,v 1.31.2.1 1999/06/21 23:19:57 perry Exp $
      2      1.15       cgd #	@(#)Makefile	8.2 (Berkeley) 3/17/94
      3       1.1       cgd 
      4       1.1       cgd PROG=	disklabel
      5      1.19  christos SRCS=	disklabel.c dkcksum.c interact.c
      6      1.12       cgd MAN=	disklabel.5 disklabel.8
      7      1.20  christos LDADD+= -lutil
      8      1.20  christos DPADD+= ${LIBUTIL}
      9       1.9   hpeyerl 
     10      1.30  drochner # recognize old partition ID for a while
     11      1.30  drochner .if (${MACHINE} == "i386")
     12      1.30  drochner CPPFLAGS+= -DCOMPAT_386BSD_MBRPART
     13      1.30  drochner .endif
     14       1.9   hpeyerl 
     15      1.29      mark .if (${MACHINE} == "hp300") || (${MACHINE} == "vax") \
     16      1.29      mark 	|| (${MACHINE} == "arm32")
     17      1.28  christos CPPFLAGS+= -DNUMBOOT=1
     18      1.31        pk .endif
     19      1.31        pk 
     20      1.31        pk # recognize old partition ID for a while
     21      1.31        pk .if (${MACHINE} == "sparc") || (${MACHINE} == "sparc64") \
     22      1.31        pk 	|| (${MACHINE} == "sun3")
     23      1.31        pk CPPFLAGS+= -DSTRICT_CYLINDER_ALIGNMENT
     24  1.31.2.1     perry .endif
     25  1.31.2.1     perry 
     26  1.31.2.1     perry .if (${MACHINE} == "alpha")
     27  1.31.2.1     perry # read in the old boot area even though we don't support writing the boot
     28  1.31.2.1     perry # area with disklabel(8).
     29  1.31.2.1     perry CPPFLAGS+= -DSAVEBOOTAREA
     30       1.5   mycroft .endif
     31       1.1       cgd 
     32       1.1       cgd .include <bsd.prog.mk>
     33