2d68bf45bf
Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike
14 lines
196 B
Makefile
14 lines
196 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 3/17/94
|
|
# $FreeBSD$
|
|
|
|
PROG= disklabel
|
|
SRCS= disklabel.c
|
|
MAN= disklabel.5 disklabel.8
|
|
|
|
.if ${MACHINE} == "pc98"
|
|
CFLAGS+= -DPC98
|
|
.endif
|
|
WARNS= 0
|
|
|
|
.include <bsd.prog.mk>
|