summaryrefslogtreecommitdiffstats
path: root/sys/modules
diff options
context:
space:
mode:
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile5
-rw-r--r--sys/modules/if_gif/Makefile18
-rw-r--r--sys/modules/if_stf/Makefile15
3 files changed, 36 insertions, 2 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index c0eef44..306c664 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -7,8 +7,9 @@ _random= random
.endif
SUBDIR= 3dfx accf_data accf_http agp aha amr an aue \
- cam ccd cd9660 coda cue dc de digi ed fdescfs fdc fs fxp if_disc if_ef \
- if_ppp if_sl if_tap if_tun ip6fw ipfilter ipfw ispfw joy kue lge \
+ cam ccd cd9660 coda cue dc de digi ed fdescfs fdc fs fxp \
+ if_disc if_ef if_gif if_ppp if_sl if_stf if_tap if_tun \
+ ip6fw ipfilter ipfw ispfw joy kue lge \
libmchain linux lnc md mii mlx msdosfs ncp netgraph nfs nge ntfs \
nullfs nwfs pcn portalfs procfs ${_random} \
rl rp sf sis sk sn snp sound sppp ste sym syscons sysvipc ti tl twe \
diff --git a/sys/modules/if_gif/Makefile b/sys/modules/if_gif/Makefile
new file mode 100644
index 0000000..29195bd
--- /dev/null
+++ b/sys/modules/if_gif/Makefile
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
+
+KMOD= if_gif
+SRCS= if_gif.c in_gif.c in6_gif.c opt_inet.h opt_inet6.h opt_mrouting.h
+NOMAN=
+
+opt_inet.h:
+ echo "#define INET 1" > ${.TARGET}
+
+opt_inet6.h:
+ echo "#define INET6 1" > ${.TARGET}
+
+opt_mrouting.h:
+ echo "#define MROUTING 1" > ${.TARGET}
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/if_stf/Makefile b/sys/modules/if_stf/Makefile
new file mode 100644
index 0000000..5bdb0cb
--- /dev/null
+++ b/sys/modules/if_stf/Makefile
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../net
+
+KMOD= if_stf
+SRCS= if_stf.c opt_inet.h opt_inet6.h
+NOMAN=
+
+opt_inet.h:
+ echo "#define INET 1" > ${.TARGET}
+
+opt_inet6.h:
+ echo "#define INET6 1" > ${.TARGET}
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud