libpam: Reorganize libpam build structure.
[dragonfly.git] / sys / net / tun / Makefile
blobc922834416ca08fe9e2ec5eef437a4a2afffa2e7
1 # $FreeBSD: src/sys/modules/if_tun/Makefile,v 1.19.2.1 2001/07/24 09:49:42 dd Exp $
3 KMOD= if_tun
4 SRCS= if_tun.c opt_inet.h opt_inet6.h use_tun.h
6 NTUN?= 2
8 .if !defined(BUILDING_WITH_KERNEL)
9 opt_inet.h:
10 echo "#define INET 1" > ${.TARGET}
12 opt_inet6.h:
13 echo "#define INET6 1" > ${.TARGET}
14 .endif
16 use_tun.h:
17 echo "#define NTUN ${NTUN}" > ${.TARGET}
19 .include <bsd.kmod.mk>