]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd-network/meson.build
tree-wide: drop license boilerplate
[thirdparty/systemd.git] / src / libsystemd-network / meson.build
CommitLineData
3a726fcd
ZJS
1# SPDX-License-Identifier: LGPL-2.1+
2#
3# Copyright 2017 Zbigniew Jędrzejewski-Szmek
3a726fcd 4
5c23128d 5sources = files('''
37efbbd8
ZJS
6 sd-dhcp-client.c
7 sd-dhcp-server.c
8 dhcp-network.c
9 dhcp-option.c
10 dhcp-packet.c
11 dhcp-internal.h
12 dhcp-server-internal.h
13 dhcp-protocol.h
14 dhcp-lease-internal.h
15 sd-dhcp-lease.c
16 sd-ipv4ll.c
17 sd-ipv4acd.c
18 arp-util.h
19 arp-util.c
20 network-internal.c
21 sd-ndisc.c
22 ndisc-internal.h
23 ndisc-router.h
24 ndisc-router.c
4a24ba71
ZJS
25 sd-radv.c
26 radv-internal.h
37efbbd8
ZJS
27 icmp6-util.h
28 icmp6-util.c
29 sd-dhcp6-client.c
30 dhcp6-internal.h
31 dhcp6-protocol.h
32 dhcp6-network.c
33 dhcp6-option.c
34 dhcp6-lease-internal.h
35 sd-dhcp6-lease.c
36 dhcp-identifier.h
37 dhcp-identifier.c
38 lldp-internal.h
39 lldp-network.h
40 lldp-network.c
41 lldp-neighbor.h
42 lldp-neighbor.c
43 sd-lldp.c
5c23128d
ZJS
44'''.split())
45
46network_internal_h = files('network-internal.h')
47
48libsystemd_network = static_library(
37efbbd8
ZJS
49 'systemd-network',
50 sources,
51 network_internal_h,
52 include_directories : includes)