aboutsummaryrefslogtreecommitdiff
path: root/sbin/bsdlabel/Makefile
diff options
context:
space:
mode:
authorYoshihiro Takahashi <nyan@FreeBSD.org>2000-05-09 13:46:14 +0000
committerYoshihiro Takahashi <nyan@FreeBSD.org>2000-05-09 13:46:14 +0000
commitf9602de6f7ec0f4f2ae814d87c9311c6763e4acc (patch)
tree00dc3f01508d5afe91ab777089bb33fe47ded67d /sbin/bsdlabel/Makefile
parent19f84caa23c7f7740b9526992a474441420b326d (diff)
downloadsrc-f9602de6f7ec0f4f2ae814d87c9311c6763e4acc.tar.gz
src-f9602de6f7ec0f4f2ae814d87c9311c6763e4acc.zip
Add '-DPC98' to CFLAGS if MACHINE == pc98.
Notes
Notes: svn path=/head/; revision=60256
Diffstat (limited to 'sbin/bsdlabel/Makefile')
-rw-r--r--sbin/bsdlabel/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/sbin/bsdlabel/Makefile b/sbin/bsdlabel/Makefile
index bf77cff4c2cf..4090fc418d95 100644
--- a/sbin/bsdlabel/Makefile
+++ b/sbin/bsdlabel/Makefile
@@ -1,8 +1,13 @@
# @(#)Makefile 8.2 (Berkeley) 3/17/94
+# $FreeBSD$
PROG= disklabel
SRCS= disklabel.c dkcksum.c
MAN8= disklabel.8
MAN5= disklabel.5
+.if ${MACHINE} == "pc98"
+CFLAGS+= -DPC98
+.endif
+
.include <bsd.prog.mk>