diff options
author | yar <yar@FreeBSD.org> | 2005-10-14 23:30:17 +0000 |
---|---|---|
committer | yar <yar@FreeBSD.org> | 2005-10-14 23:30:17 +0000 |
commit | 024c6e0e38a1f518d45e5d95d0d37098e7590c5f (patch) | |
tree | 40653d874a438a3202bb62dd66566bfd5b1386c1 /sys/modules/sio | |
parent | 924e74a7598e3d599ae2d95a728fc373ef8582ed (diff) | |
download | FreeBSD-src-024c6e0e38a1f518d45e5d95d0d37098e7590c5f.zip FreeBSD-src-024c6e0e38a1f518d45e5d95d0d37098e7590c5f.tar.gz |
Let modules use the kernel's opt_*.h files if built along with
the kernel by wrapping all targets for fake opt_*.h files in
.if defined(KERNBUILDDIR). Thus, such fake files won't be
created at all if modules are built with the kernel.
Some modules undergo cleanup like removing unused or unneeded
options or .h files, without which they wouldn't build this way
or the other.
Reviewed by: ru
Tested by: no binary changes in modules built alone
Tested on: i386 sparc64 amd64
Diffstat (limited to 'sys/modules/sio')
-rw-r--r-- | sys/modules/sio/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/modules/sio/Makefile b/sys/modules/sio/Makefile index 8ec6b4e..59386e6 100644 --- a/sys/modules/sio/Makefile +++ b/sys/modules/sio/Makefile @@ -15,6 +15,7 @@ SRCS+= sio_cbus.c SRCS+= sio_isa.c .endif +.if !defined(KERNBUILDDIR) opt_compat.h: echo "#define COMPAT_43 1" > ${.TARGET} @@ -23,5 +24,6 @@ opt_sio.h: echo "#define COM_MULTIPORT 1" > ${.TARGET} echo "#define COM_ESP 1" >> ${.TARGET} .endif +.endif .include <bsd.kmod.mk> |