Fix module build during buildworld with MODULES_WITH_WORLD defined.

This commit is contained in:
kan 2004-04-10 19:41:15 +00:00
parent 59e9d5b09d
commit 9ec94342bd

View File

@ -5,9 +5,12 @@
KMOD= wlan
SRCS= ieee80211.c ieee80211_crypto.c ieee80211_input.c ieee80211_ioctl.c \
ieee80211_node.c ieee80211_output.c ieee80211_proto.c
SRCS+= bus_if.h device_if.h opt_inet.h
SRCS+= bus_if.h device_if.h opt_inet.h opt_ipx.h
opt_inet.h:
echo "#define INET 1" > opt_inet.h
opt_ipx.h:
echo "#define IPX 1" > opt_ipx.h
.include <bsd.kmod.mk>