aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/if_stf
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2001-07-02 21:02:09 +0000
committerBrooks Davis <brooks@FreeBSD.org>2001-07-02 21:02:09 +0000
commit53dab5fe7bb6da39e059b46753ee3edbfaf755b2 (patch)
treec356b4fb3bb3f0b8afdc188117e65b43ba086e89 /sys/modules/if_stf
parent3e61dca08d9d435f0efc3ea3efe41fdee852200a (diff)
downloadsrc-53dab5fe7bb6da39e059b46753ee3edbfaf755b2.tar.gz
src-53dab5fe7bb6da39e059b46753ee3edbfaf755b2.zip
gif(4) and stf(4) modernization:
- Remove gif dependencies from stf. - Make gif and stf into modules - Make gif cloneable. PR: kern/27983 Reviewed by: ru, ume Obtained from: NetBSD MFC after: 1 week
Notes
Notes: svn path=/head/; revision=79106
Diffstat (limited to 'sys/modules/if_stf')
-rw-r--r--sys/modules/if_stf/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/modules/if_stf/Makefile b/sys/modules/if_stf/Makefile
new file mode 100644
index 000000000000..5bdb0cbc1b9d
--- /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>