]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd-network/meson.build
Merge the "boot loader specification" wiki page
[thirdparty/systemd.git] / src / libsystemd-network / meson.build
1 # SPDX-License-Identifier: LGPL-2.1+
2
3 sources = files('''
4 sd-dhcp-client.c
5 sd-dhcp-server.c
6 dhcp-network.c
7 dhcp-option.c
8 dhcp-packet.c
9 dhcp-internal.h
10 dhcp-server-internal.h
11 dhcp-protocol.h
12 dhcp-lease-internal.h
13 sd-dhcp-lease.c
14 sd-ipv4ll.c
15 sd-ipv4acd.c
16 arp-util.h
17 arp-util.c
18 network-internal.c
19 sd-ndisc.c
20 ndisc-internal.h
21 ndisc-router.h
22 ndisc-router.c
23 sd-radv.c
24 radv-internal.h
25 icmp6-util.h
26 icmp6-util.c
27 sd-dhcp6-client.c
28 dhcp6-internal.h
29 dhcp6-protocol.h
30 dhcp6-network.c
31 dhcp6-option.c
32 dhcp6-lease-internal.h
33 sd-dhcp6-lease.c
34 dhcp-identifier.h
35 dhcp-identifier.c
36 lldp-internal.h
37 lldp-network.h
38 lldp-network.c
39 lldp-neighbor.h
40 lldp-neighbor.c
41 sd-lldp.c
42 '''.split())
43
44 network_internal_h = files('network-internal.h')
45
46 libsystemd_network = static_library(
47 'systemd-network',
48 sources,
49 network_internal_h,
50 include_directories : includes)