d359a62d44
passing through. Modifications are restricted to a subset of C language operations on unsigned integers of 8, 16, 32 or 64 bit size. These are: set to new value (=), addition (+=), subtraction (-=), multiplication (*=), division (/=), negation (= -), bitwise AND (&=), bitwise OR (|=), bitwise eXclusive OR (^=), shift left (<<=), shift right (>>=). Several operations are all applied to a packet sequentially in order they were specified by user. Submitted by: Maxim Ignatenko <gelraen.ua at gmail.com> Vadim Goncharov <vadimnuclight at tpu.ru> Discussed with: net@ Approved by: mav (mentor) MFC after: 1 month
66 lines
763 B
Makefile
66 lines
763 B
Makefile
# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= async \
|
|
atm \
|
|
atmllc \
|
|
${_bluetooth} \
|
|
bpf \
|
|
bridge \
|
|
car \
|
|
cisco \
|
|
deflate \
|
|
device \
|
|
echo \
|
|
eiface \
|
|
etf \
|
|
ether \
|
|
ether_echo \
|
|
fec \
|
|
frame_relay \
|
|
gif \
|
|
gif_demux \
|
|
hole \
|
|
hub \
|
|
iface \
|
|
ip_input \
|
|
ipfw \
|
|
ksocket \
|
|
l2tp \
|
|
lmi \
|
|
${_mppc} \
|
|
nat \
|
|
netflow \
|
|
netgraph \
|
|
one2many \
|
|
patch \
|
|
pipe \
|
|
ppp \
|
|
pppoe \
|
|
pptpgre \
|
|
pred1 \
|
|
rfc1490 \
|
|
socket \
|
|
source \
|
|
split \
|
|
sppp \
|
|
tag \
|
|
tcpmss \
|
|
tee \
|
|
tty \
|
|
UI \
|
|
vjc \
|
|
vlan
|
|
|
|
.if ${MK_BLUETOOTH} != "no" || defined(ALL_MODULES)
|
|
_bluetooth= bluetooth
|
|
.endif
|
|
|
|
.if ${MK_CRYPT} != "no" && exists(${.CURDIR}/../../crypto/rc4/rc4.c)
|
|
_mppc= mppc
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|