diff options
author | nyan <nyan@FreeBSD.org> | 2000-05-09 13:46:14 +0000 |
---|---|---|
committer | nyan <nyan@FreeBSD.org> | 2000-05-09 13:46:14 +0000 |
commit | fd65d0b7d9899c055986e248e5f45d5901678539 (patch) | |
tree | d610e7d105908b8f5ae980732023af0cdd2ac81a /sbin/bsdlabel/Makefile | |
parent | 416400314ecba5c15f99f1cbdef64b24142713f8 (diff) | |
download | FreeBSD-src-fd65d0b7d9899c055986e248e5f45d5901678539.zip FreeBSD-src-fd65d0b7d9899c055986e248e5f45d5901678539.tar.gz |
Add '-DPC98' to CFLAGS if MACHINE == pc98.
Diffstat (limited to 'sbin/bsdlabel/Makefile')
-rw-r--r-- | sbin/bsdlabel/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sbin/bsdlabel/Makefile b/sbin/bsdlabel/Makefile index bf77cff..4090fc4 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> |