diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2001-09-16 12:40:20 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2001-09-16 12:40:20 +0000 |
| commit | 9849949cae0603df0485a0be8a3f80fb8f68f304 (patch) | |
| tree | 6bf1b6fb9137700f13f8ce8d60ac05a428b1654b | |
| parent | aadcbac10495722d7420ac83d992a3afe5950fb7 (diff) | |
Notes
| -rw-r--r-- | sys/modules/fdc/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/modules/fdc/Makefile b/sys/modules/fdc/Makefile index bbd7ae068bfd..e95a44b0de6d 100644 --- a/sys/modules/fdc/Makefile +++ b/sys/modules/fdc/Makefile @@ -1,6 +1,11 @@ # $FreeBSD$ +.if ${MACHINE} == "pc98" +.PATH: ${.CURDIR}/../../pc98/pc98 +CFLAGS+= -DPC98 +.else .PATH: ${.CURDIR}/../../isa +.endif KMOD= fdc SRCS= fd.c \ |
