diff options
| author | Brooks Davis <brooks@FreeBSD.org> | 2001-07-02 21:02:09 +0000 |
|---|---|---|
| committer | Brooks Davis <brooks@FreeBSD.org> | 2001-07-02 21:02:09 +0000 |
| commit | 53dab5fe7bb6da39e059b46753ee3edbfaf755b2 (patch) | |
| tree | c356b4fb3bb3f0b8afdc188117e65b43ba086e89 /sys/modules | |
| parent | 3e61dca08d9d435f0efc3ea3efe41fdee852200a (diff) | |
Notes
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 5 | ||||
| -rw-r--r-- | sys/modules/if_gif/Makefile | 18 | ||||
| -rw-r--r-- | sys/modules/if_stf/Makefile | 15 |
3 files changed, 36 insertions, 2 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index c0eef44c4255..306c664d3392 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 000000000000..29195bd01e3a --- /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 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> |
