-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathMakefile.am
More file actions
61 lines (55 loc) · 996 Bytes
/
Copy pathMakefile.am
File metadata and controls
61 lines (55 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
SUBDIRS = utils
bin_PROGRAMS = yarrp
yarrp_SOURCES = \
icmp.cpp \
iplist.cpp \
listener.cpp \
listener6.cpp \
mac.cpp \
net.cpp \
patricia.cpp \
random_list.cpp \
status.cpp \
subnet.cpp \
subnet_list.cpp \
trace.cpp \
trace4.cpp \
trace6.cpp \
util.cpp \
yarrp.cpp \
yconfig.cpp \
libcperm/cperm.c \
libcperm/prefix.c \
libcperm/cycle.c \
libcperm/ciphers/rc5.c \
libcperm/ciphers/rc5-16.c \
libcperm/ciphers/speck.c
include_HEADERS = \
icmp.h \
mac.h \
patricia.h \
random_list.h \
stats.h \
status.h \
subnet.h \
subnet_list.h \
trace.h \
ttlhisto.h \
yarrp.h \
yconfig.h \
libcperm/cperm.h \
libcperm/cperm-internal.h \
libcperm/cycle.h \
libcperm/feistel.h \
libcperm/prefix.h \
libcperm/ciphers/rc5-16.h \
libcperm/ciphers/rc5.h \
libcperm/ciphers/speck.h
man_MANS = \
yarrp.1
EXTRA_DIST = \
$(man_MANS) \
LICENSE \
CHANGES
yarrp.1.pdf: yarrp.1
man -t ./yarrp.1 | ps2pdf - > yarrp.1.pdf