diff options
author | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2005-10-14 23:30:17 +0000 |
---|---|---|
committer | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2005-10-14 23:30:17 +0000 |
commit | 822923447e454b30d310cb46903c9ddeca9f0a7a (patch) | |
tree | 40653d874a438a3202bb62dd66566bfd5b1386c1 /sys/modules/netgraph/gif | |
parent | 10d645b7e5a073fc2d4c2bd7472966b4381caf7c (diff) |
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
Notes
Notes:
svn path=/head/; revision=151350
Diffstat (limited to 'sys/modules/netgraph/gif')
-rw-r--r-- | sys/modules/netgraph/gif/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/modules/netgraph/gif/Makefile b/sys/modules/netgraph/gif/Makefile index 4c18c27e50c2..acf4373f26bf 100644 --- a/sys/modules/netgraph/gif/Makefile +++ b/sys/modules/netgraph/gif/Makefile @@ -3,10 +3,12 @@ KMOD= ng_gif SRCS= ng_gif.c opt_inet.h opt_inet6.h +.if !defined(KERNBUILDDIR) opt_inet.h: echo "#define INET 1" > ${.TARGET} opt_inet6.h: echo "#define INET6 1" > ${.TARGET} +.endif .include <bsd.kmod.mk> |