-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathmeson.build
135 lines (130 loc) · 4.73 KB
/
meson.build
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
libshared_sources = files('''
share/missing_syscall.h
share/missing.h
share/def.h
share/capability-util.c
share/capability-util.h
share/conf-parser.c
share/conf-parser.h
share/conf-files.c
share/conf-files.h
share/dns-def.h
share/dns-domain.c
share/dns-domain.h
share/hostname-util.c
share/hostname-util.h
share/alloc-util.c
share/alloc-util.h
share/build.h
share/set.h
share/hashmap.c
share/hashmap.h
share/siphash24.c
share/siphash24.h
share/utf8.c
share/utf8.h
share/strv.c
share/strv.h
share/network-util.c
share/network-util.h
share/in-addr-util.c
share/in-addr-util.h
share/extract-word.c
share/extract-word.h
share/util.c
share/util.h
share/log.c
share/log.h
share/macro.h
share/signal-util.c
share/signal-util.h
share/syslog-util.c
share/syslog-util.h
share/time-util.c
share/time-util.h
share/ioprio.h
share/io-util.c
share/io-util.h
share/iovec-util.c
share/iovec-util.h
share/escape.c
share/escape.h
share/user-util.c
share/user-util.h
share/process-util.c
share/process-util.h
share/terminal-util.c
share/terminal-util.h
share/proc-cmdline.c
share/proc-cmdline.h
share/socket-util.c
share/socket-util.h
share/dirent-util.c
share/dirent-util.h
share/fd-util.c
share/fd-util.h
share/sparse-endian.h
share/fileio.c
share/fileio.h
share/formats-util.h
share/hash-funcs.c
share/hash-funcs.h
share/hexdecoct.c
share/hexdecoct.h
share/list.h
share/mempool.c
share/mempool.h
share/parse-util.c
share/parse-util.h
share/path-util.c
share/path-util.h
share/random-util.c
share/random-util.h
share/ratelimit.c
share/ratelimit.h
share/stdio-util.h
share/openssl-util.h
share/string-table.c
share/string-table.h
share/string-util.c
share/string-util.h
share/unaligned.h
share/stat-util.c
share/stat-util.h
share/fs-util.c
share/fs-util.h
share/mkdir.c
share/mkdir.h
share/virt.c
share/virt.h
share/sd-network.h
share/sd-network.c
share/sd-resolve.h
share/sd-resolve.c
'''.split())
libshared = static_library(
'shared',
libshared_sources)
systemd_netlogd_sources = files('''
netlog/systemd-netlogd.c
netlog/netlog-conf.h
netlog/netlog-conf.c
netlog/netlog-manager.c
netlog/netlog-manager.h
netlog/netlog-network.c
netlog/netlog-network.h
netlog/netlog-protocol.c
netlog/netlog-protocol.h
netlog/netlog-dtls.c
netlog/netlog-dtls.h
netlog/netlog-ssl.c
netlog/netlog-ssl.h
netlog/netlog-tls.c
netlog/netlog-tls.h
'''.split())
netlogd_gperf_c = custom_target(
'netlog-gperf.c',
input : 'netlog/netlog-gperf.gperf',
output : 'netlog-gperf.c',
command : [gperf, '@INPUT@', '--output-file', '@OUTPUT@'])
systemd_netlogd_sources += [netlogd_gperf_c]