diff options
author | nyan <nyan@FreeBSD.org> | 2004-03-28 13:42:27 +0000 |
---|---|---|
committer | nyan <nyan@FreeBSD.org> | 2004-03-28 13:42:27 +0000 |
commit | 1425c998a18db105fcdc560157ebc5bb857ab2e6 (patch) | |
tree | ed7ca9a72770f7fdeb5636d63f9a178d583f8737 /usr.sbin/fdformat | |
parent | 8a75d031d7241e00e6848d5ba33e1c16abcc54b4 (diff) | |
download | FreeBSD-src-1425c998a18db105fcdc560157ebc5bb857ab2e6.zip FreeBSD-src-1425c998a18db105fcdc560157ebc5bb857ab2e6.tar.gz |
Add PC98 supports.
Submitted by: Watanabe Kazuhiro <CQG00620@nifty.ne.jp> (mostly)
Diffstat (limited to 'usr.sbin/fdformat')
-rw-r--r-- | usr.sbin/fdformat/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.sbin/fdformat/Makefile b/usr.sbin/fdformat/Makefile index 8cc164b..40ca9a7 100644 --- a/usr.sbin/fdformat/Makefile +++ b/usr.sbin/fdformat/Makefile @@ -8,4 +8,8 @@ SRCS= fdformat.c fdutil.c WARNS?= 2 CFLAGS+= -I${.CURDIR}/../fdread +.if ${MACHINE} == "pc98" +CFLAGS+= -DPC98 +.endif + .include <bsd.prog.mk> |