diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2000-05-06 02:06:35 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-05-06 02:06:35 +0000 |
| commit | 9098c77aa828a174a24a097e93ab9dcc57bf4f31 (patch) | |
| tree | 1aec963720a4daef765baf81ca367bdb7f606da2 | |
| parent | d6b17eeba366f37a5715958300aa6b3b8496e341 (diff) | |
Notes
| -rw-r--r-- | sys/modules/Makefile | 4 | ||||
| -rw-r--r-- | sys/modules/syscons/Makefile | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 2957ce508fe8..d9bcd25abb92 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -5,14 +5,14 @@ SUBDIR= aha amr an aue ccd cd9660 coda cue dc fdesc fxp if_disc if_ef if_ppp \ if_sl if_tun ipfilter ipfw joy kernfs kue \ md mfs mii mlx msdos ncp netgraph nfs ntfs nullfs \ - nwfs portal procfs rl sf sis sk ste ti tl tx \ + nwfs portal procfs rl sf sis sk ste syscons ti tl tx \ udbp ugen uhid ukbd ulpt umapfs umass umodem ums union urio usb \ vinum vn vpo vr wb xl # XXX some of these can move to the general case when de-i386'ed .if ${MACHINE_ARCH} == "i386" SUBDIR+=bktr coff fpu gnufpu ibcs2 linprocfs linux splash streams \ - svr4 syscons vesa wi + svr4 vesa wi .endif .if ${MACHINE_ARCH} == "alpha" diff --git a/sys/modules/syscons/Makefile b/sys/modules/syscons/Makefile index 491590071c7f..e214f93eb130 100644 --- a/sys/modules/syscons/Makefile +++ b/sys/modules/syscons/Makefile @@ -1,7 +1,6 @@ # $FreeBSD$ SUBDIR = -SUBDIR += apm SUBDIR += blank SUBDIR += daemon SUBDIR += fade @@ -13,4 +12,8 @@ SUBDIR += snake SUBDIR += star SUBDIR += warp +.if ${MACHINE_ARCH} == "i386" +SUBDIR += apm +.endif + .include <bsd.subdir.mk> |
