Add '-DPC98' to CFLAGS if MACHINE == pc98.

This commit is contained in:
Yoshihiro Takahashi 2000-05-09 13:46:14 +00:00
parent 19f84caa23
commit f9602de6f7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=60256
2 changed files with 10 additions and 0 deletions

View File

@ -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>

View File

@ -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>