Deleted Added
full compact
Makefile (130613) Makefile (133720)
1# $FreeBSD: head/sys/modules/pf/Makefile 130613 2004-06-16 23:24:02Z mlaier $
1# $FreeBSD: head/sys/modules/pf/Makefile 133720 2004-08-14 15:32:40Z dwmalone $
2
3.PATH: ${.CURDIR}/../../contrib/pf/net
4.PATH: ${.CURDIR}/../../contrib/pf/netinet
5.PATH: ${.CURDIR}/../../netinet
6
7KMOD= pf
8SRCS = pf.c pf_if.c pf_subr.c pf_osfp.c pf_ioctl.c pf_norm.c pf_table.c \
9 if_pflog.c \
2
3.PATH: ${.CURDIR}/../../contrib/pf/net
4.PATH: ${.CURDIR}/../../contrib/pf/netinet
5.PATH: ${.CURDIR}/../../netinet
6
7KMOD= pf
8SRCS = pf.c pf_if.c pf_subr.c pf_osfp.c pf_ioctl.c pf_norm.c pf_table.c \
9 if_pflog.c \
10 in4_cksum.c ip_id.c \
11 opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h opt_random_ip_id.h
10 in4_cksum.c \
11 opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h
12
13CFLAGS+= -Wall -I${.CURDIR}/../../contrib/pf
14
15opt_pf.h:
16 echo "#define DEV_PF 1" > opt_pf.h
17 echo "#define DEV_PFLOG 1" >> opt_pf.h
18
19opt_inet.h:

--- 4 unchanged lines hidden (view full) ---

24 echo > opt_inet6.h
25.else
26 echo "#define INET6 1" > opt_inet6.h
27.endif
28
29opt_bpf.h:
30 echo "#define DEV_BPF 1" > opt_bpf.h
31
12
13CFLAGS+= -Wall -I${.CURDIR}/../../contrib/pf
14
15opt_pf.h:
16 echo "#define DEV_PF 1" > opt_pf.h
17 echo "#define DEV_PFLOG 1" >> opt_pf.h
18
19opt_inet.h:

--- 4 unchanged lines hidden (view full) ---

24 echo > opt_inet6.h
25.else
26 echo "#define INET6 1" > opt_inet6.h
27.endif
28
29opt_bpf.h:
30 echo "#define DEV_BPF 1" > opt_bpf.h
31
32opt_random_ip_id.h:
33 echo "#define RANDOM_IP_ID 1" > opt_random_ip_id.h
34
35.include <bsd.kmod.mk>
32.include <bsd.kmod.mk>