diff options
| author | Warner Losh <imp@FreeBSD.org> | 2008-09-01 23:59:00 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2008-09-01 23:59:00 +0000 |
| commit | 9e51595ce660d915899019d03075d8c17f3732d3 (patch) | |
| tree | f3879290a2a415b707c0fc6df509bc783d30abf6 /sys/modules/pf | |
| parent | eaeb50d411b0b61ad58228701d5dea647746f678 (diff) | |
Notes
Diffstat (limited to 'sys/modules/pf')
| -rw-r--r-- | sys/modules/pf/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/modules/pf/Makefile b/sys/modules/pf/Makefile index ce674142757e..3b07c41512b3 100644 --- a/sys/modules/pf/Makefile +++ b/sys/modules/pf/Makefile @@ -15,20 +15,20 @@ CFLAGS+= -I${.CURDIR}/../../contrib/pf .if !defined(KERNBUILDDIR) opt_inet.h: - echo "#define INET 1" > opt_inet.h + echo "#define INET 1" > ${.TARGET} .if ${MK_INET6_SUPPORT} != "no" opt_inet6.h: - echo "#define INET6 1" > opt_inet6.h + echo "#define INET6 1" > ${.TARGET} .endif opt_bpf.h: - echo "#define DEV_BPF 1" > opt_bpf.h + echo "#define DEV_BPF 1" > ${.TARGET} # pflog can be loaded as a module, have the additional checks turned on opt_pf.h: - echo "#define DEV_PF 1" > opt_pf.h - echo "#define DEF_PFLOG 1" >> opt_pf.h + echo "#define DEV_PF 1" > ${.TARGET} + echo "#define DEF_PFLOG 1" >> ${.TARGET} .endif .include <bsd.kmod.mk> |
