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