diff options
author | brooks <brooks@FreeBSD.org> | 2001-07-02 21:02:09 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2001-07-02 21:02:09 +0000 |
commit | e7b9bc714f516674681231706c48e6aaa41c1d52 (patch) | |
tree | c356b4fb3bb3f0b8afdc188117e65b43ba086e89 /sys/modules/if_gif/Makefile | |
parent | 1e69f4eb2364d7e5da7ca1d7cb99c3e77599e36d (diff) | |
download | FreeBSD-src-e7b9bc714f516674681231706c48e6aaa41c1d52.zip FreeBSD-src-e7b9bc714f516674681231706c48e6aaa41c1d52.tar.gz |
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
Diffstat (limited to 'sys/modules/if_gif/Makefile')
-rw-r--r-- | sys/modules/if_gif/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
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> |