Ratan Gupta | bf9ba40 | 2017-04-14 17:16:04 +0530 | [diff] [blame] | 1 | # Build these headers, don't install them |
| 2 | nobase_nodist_include_HEADERS = \ |
Ratan Gupta | db81a8a | 2017-04-20 20:21:25 +0530 | [diff] [blame] | 3 | xyz/openbmc_project/Network/VLAN/Create/server.hpp \ |
| 4 | xyz/openbmc_project/Network/IP/Create/server.hpp |
Ratan Gupta | bf9ba40 | 2017-04-14 17:16:04 +0530 | [diff] [blame] | 5 | |
Patrick Venture | 042e472 | 2019-01-07 07:42:11 -0800 | [diff] [blame^] | 6 | if HAVE_SYSTEMD |
| 7 | systemdsystemunit_DATA = \ |
| 8 | xyz.openbmc_project.Network.service |
| 9 | |
| 10 | dbuspolicy_DATA = \ |
| 11 | xyz.openbmc_project.Network.conf |
| 12 | endif |
| 13 | |
Ratan Gupta | b38401b | 2018-03-16 12:44:26 +0530 | [diff] [blame] | 14 | sbin_PROGRAMS = phosphor-network-manager ncsi-netlink |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 15 | |
| 16 | noinst_HEADERS = \ |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 17 | ethernet_interface.hpp \ |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 18 | network_config.hpp \ |
Ratan Gupta | 4af3676 | 2017-04-20 19:12:29 +0530 | [diff] [blame] | 19 | network_manager.hpp \ |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 20 | ipaddress.hpp \ |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 21 | types.hpp \ |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 22 | util.hpp \ |
| 23 | routing_table.hpp \ |
Ratan Gupta | ed123a3 | 2017-06-15 09:07:31 +0530 | [diff] [blame] | 24 | config_parser.hpp \ |
Ratan Gupta | 935bc33 | 2017-07-11 17:47:14 +0530 | [diff] [blame] | 25 | system_configuration.hpp \ |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 26 | dhcp_configuration.hpp \ |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 27 | vlan_interface.hpp \ |
Ratan Gupta | 4f80c1a | 2017-09-03 18:01:22 +0530 | [diff] [blame] | 28 | rtnetlink_server.hpp \ |
Vishwanatha Subbanna | ca4ce1b | 2017-10-16 23:17:18 +0530 | [diff] [blame] | 29 | dns_updater.hpp \ |
Ratan Gupta | b38401b | 2018-03-16 12:44:26 +0530 | [diff] [blame] | 30 | watch.hpp \ |
| 31 | argument.hpp |
| 32 | |
| 33 | ncsi_netlink_SOURCES = \ |
| 34 | argument.cpp \ |
Ratan Gupta | bbe4579 | 2018-03-23 00:22:55 +0530 | [diff] [blame] | 35 | ncsi_netlink_main.cpp \ |
| 36 | ncsi_util.cpp |
| 37 | |
| 38 | ncsi_netlink_LDFLAGS = \ |
| 39 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 40 | -lnl-3 \ |
| 41 | -lnl-genl-3 |
| 42 | |
| 43 | ncsi_netlink_CPPFLAGS = -isystem=/usr/include/libnl3 |
Andrew Geissler | 1f0648d | 2018-08-27 11:12:06 -0700 | [diff] [blame] | 44 | ncsi_netlink_CXXFLAGS = -flto |
Ratan Gupta | b38401b | 2018-03-16 12:44:26 +0530 | [diff] [blame] | 45 | |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 46 | |
| 47 | phosphor_network_manager_SOURCES = \ |
Ratan Gupta | 91a99cc | 2017-04-14 16:32:09 +0530 | [diff] [blame] | 48 | ethernet_interface.cpp \ |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 49 | ipaddress.cpp \ |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 50 | network_config.cpp \ |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 51 | network_manager.cpp \ |
Ratan Gupta | bf9ba40 | 2017-04-14 17:16:04 +0530 | [diff] [blame] | 52 | network_manager_main.cpp \ |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 53 | system_configuration.cpp \ |
Ratan Gupta | db81a8a | 2017-04-20 20:21:25 +0530 | [diff] [blame] | 54 | xyz/openbmc_project/Network/VLAN/Create/server.cpp \ |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 55 | xyz/openbmc_project/Network/IP/Create/server.cpp \ |
Ratan Gupta | 233524c | 2017-05-27 11:47:31 +0530 | [diff] [blame] | 56 | util.cpp \ |
Ratan Gupta | ed123a3 | 2017-06-15 09:07:31 +0530 | [diff] [blame] | 57 | routing_table.cpp \ |
Ratan Gupta | 935bc33 | 2017-07-11 17:47:14 +0530 | [diff] [blame] | 58 | config_parser.cpp \ |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 59 | dhcp_configuration.cpp \ |
Gunnar Mills | aed434f | 2018-08-27 15:31:16 -0500 | [diff] [blame] | 60 | vlan_interface.cpp \ |
Ratan Gupta | 4f80c1a | 2017-09-03 18:01:22 +0530 | [diff] [blame] | 61 | rtnetlink_server.cpp \ |
Vishwanatha Subbanna | ca4ce1b | 2017-10-16 23:17:18 +0530 | [diff] [blame] | 62 | dns_updater.cpp \ |
| 63 | watch.cpp |
Ratan Gupta | bf9ba40 | 2017-04-14 17:16:04 +0530 | [diff] [blame] | 64 | |
| 65 | CLEANFILES = \ |
| 66 | xyz/openbmc_project/Network/VLAN/Create/server.cpp \ |
Ratan Gupta | db81a8a | 2017-04-20 20:21:25 +0530 | [diff] [blame] | 67 | xyz/openbmc_project/Network/VLAN/Create/server.hpp \ |
| 68 | xyz/openbmc_project/Network/IP/Create/server.cpp \ |
| 69 | xyz/openbmc_project/Network/IP/Create/server.hpp |
| 70 | |
Ratan Gupta | bf9ba40 | 2017-04-14 17:16:04 +0530 | [diff] [blame] | 71 | BUILT_SOURCES = \ |
| 72 | xyz/openbmc_project/Network/VLAN/Create/server.cpp \ |
Ratan Gupta | db81a8a | 2017-04-20 20:21:25 +0530 | [diff] [blame] | 73 | xyz/openbmc_project/Network/VLAN/Create/server.hpp \ |
| 74 | xyz/openbmc_project/Network/IP/Create/server.cpp \ |
| 75 | xyz/openbmc_project/Network/IP/Create/server.hpp |
Ratan Gupta | bf9ba40 | 2017-04-14 17:16:04 +0530 | [diff] [blame] | 76 | |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 77 | phosphor_network_manager_LDFLAGS = \ |
| 78 | $(SYSTEMD_LIBS) \ |
| 79 | $(SDBUSPLUS_LIBS) \ |
William A. Kennington III | 3a70fa2 | 2018-09-20 18:48:20 -0700 | [diff] [blame] | 80 | $(SDEVENTPLUS_LIBS) \ |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 81 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
Ratan Gupta | 11cef80 | 2017-05-29 08:41:48 +0530 | [diff] [blame] | 82 | $(PHOSPHOR_LOGGING_LIBS) \ |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 83 | -lstdc++fs |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 84 | |
| 85 | phosphor_network_manager_CXXFLAGS = \ |
| 86 | $(SYSTEMD_CFLAGS) \ |
| 87 | $(SDBUSPLUS_CFLAGS) \ |
William A. Kennington III | 3a70fa2 | 2018-09-20 18:48:20 -0700 | [diff] [blame] | 88 | $(SDEVENTPLUS_CFLAGS) \ |
Ratan Gupta | 233524c | 2017-05-27 11:47:31 +0530 | [diff] [blame] | 89 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
Andrew Geissler | 1f0648d | 2018-08-27 11:12:06 -0700 | [diff] [blame] | 90 | $(PHOSPHOR_LOGGING_CFLAGS) \ |
| 91 | -flto |
Ratan Gupta | bf9ba40 | 2017-04-14 17:16:04 +0530 | [diff] [blame] | 92 | |
| 93 | xyz/openbmc_project/Network/VLAN/Create/server.cpp: xyz/openbmc_project/Network/VLAN/Create.interface.yaml xyz/openbmc_project/Network/VLAN/Create/server.hpp |
| 94 | @mkdir -p `dirname $@` |
| 95 | $(SDBUSPLUSPLUS) -r $(srcdir) interface server-cpp xyz.openbmc_project.Network.VLAN.Create > $@ |
| 96 | |
| 97 | xyz/openbmc_project/Network/VLAN/Create/server.hpp: xyz/openbmc_project/Network/VLAN/Create.interface.yaml |
| 98 | @mkdir -p `dirname $@` |
| 99 | $(SDBUSPLUSPLUS) -r $(srcdir) interface server-header xyz.openbmc_project.Network.VLAN.Create > $@ |
Ratan Gupta | db81a8a | 2017-04-20 20:21:25 +0530 | [diff] [blame] | 100 | |
| 101 | xyz/openbmc_project/Network/IP/Create/server.cpp: xyz/openbmc_project/Network/IP/Create.interface.yaml xyz/openbmc_project/Network/IP/Create/server.hpp |
| 102 | @mkdir -p `dirname $@` |
| 103 | $(SDBUSPLUSPLUS) -r $(srcdir) interface server-cpp xyz.openbmc_project.Network.IP.Create > $@ |
| 104 | |
| 105 | xyz/openbmc_project/Network/IP/Create/server.hpp: xyz/openbmc_project/Network/IP/Create.interface.yaml |
| 106 | @mkdir -p `dirname $@` |
| 107 | $(SDBUSPLUSPLUS) -r $(srcdir) interface server-header xyz.openbmc_project.Network.IP.Create > $@ |
| 108 | sed -i '5i #include \"xyz\/openbmc_project\/Network\/IP\/server.hpp\"' $@ |
Ratan Gupta | 594123d | 2017-05-16 22:48:35 +0530 | [diff] [blame] | 109 | |
Ratan Gupta | 3529717 | 2018-11-28 18:40:16 +0530 | [diff] [blame] | 110 | SUBDIRS = test |