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 | f00182e | 2017-10-16 19:08:59 +0530 | [diff] [blame] | 21 | timer.hpp \ |
Vishwanatha Subbanna | ca4ce1b | 2017-10-16 23:17:18 +0530 | [diff] [blame] | 22 | dns_updater.hpp \ |
Ratan Gupta | b38401b | 2018-03-16 12:44:26 +0530 | [diff] [blame] | 23 | watch.hpp \ |
| 24 | argument.hpp |
| 25 | |
| 26 | ncsi_netlink_SOURCES = \ |
| 27 | argument.cpp \ |
Ratan Gupta | bbe4579 | 2018-03-23 00:22:55 +0530 | [diff] [blame] | 28 | ncsi_netlink_main.cpp \ |
| 29 | ncsi_util.cpp |
| 30 | |
| 31 | ncsi_netlink_LDFLAGS = \ |
| 32 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 33 | -lnl-3 \ |
| 34 | -lnl-genl-3 |
| 35 | |
| 36 | ncsi_netlink_CPPFLAGS = -isystem=/usr/include/libnl3 |
Andrew Geissler | 1f0648d | 2018-08-27 11:12:06 -0700 | [diff] [blame^] | 37 | ncsi_netlink_CXXFLAGS = -flto |
Ratan Gupta | b38401b | 2018-03-16 12:44:26 +0530 | [diff] [blame] | 38 | |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 39 | |
| 40 | phosphor_network_manager_SOURCES = \ |
Ratan Gupta | 91a99cc | 2017-04-14 16:32:09 +0530 | [diff] [blame] | 41 | ethernet_interface.cpp \ |
Ratan Gupta | 2eff84f | 2017-04-20 19:19:15 +0530 | [diff] [blame] | 42 | ipaddress.cpp \ |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 43 | network_config.cpp \ |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 44 | network_manager.cpp \ |
Ratan Gupta | bf9ba40 | 2017-04-14 17:16:04 +0530 | [diff] [blame] | 45 | network_manager_main.cpp \ |
Ratan Gupta | 82e1ef9 | 2017-06-15 08:39:15 +0530 | [diff] [blame] | 46 | system_configuration.cpp \ |
Ratan Gupta | db81a8a | 2017-04-20 20:21:25 +0530 | [diff] [blame] | 47 | xyz/openbmc_project/Network/VLAN/Create/server.cpp \ |
Ratan Gupta | 8804feb | 2017-05-25 10:49:57 +0530 | [diff] [blame] | 48 | xyz/openbmc_project/Network/IP/Create/server.cpp \ |
Ratan Gupta | 233524c | 2017-05-27 11:47:31 +0530 | [diff] [blame] | 49 | util.cpp \ |
Ratan Gupta | ed123a3 | 2017-06-15 09:07:31 +0530 | [diff] [blame] | 50 | routing_table.cpp \ |
Ratan Gupta | 935bc33 | 2017-07-11 17:47:14 +0530 | [diff] [blame] | 51 | config_parser.cpp \ |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 52 | dhcp_configuration.cpp \ |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 53 | vlan_interface.cpp \ |
Ratan Gupta | 4f80c1a | 2017-09-03 18:01:22 +0530 | [diff] [blame] | 54 | rtnetlink_server.cpp \ |
Vishwanatha Subbanna | f00182e | 2017-10-16 19:08:59 +0530 | [diff] [blame] | 55 | timer.cpp \ |
Vishwanatha Subbanna | ca4ce1b | 2017-10-16 23:17:18 +0530 | [diff] [blame] | 56 | dns_updater.cpp \ |
| 57 | watch.cpp |
Ratan Gupta | bf9ba40 | 2017-04-14 17:16:04 +0530 | [diff] [blame] | 58 | |
| 59 | CLEANFILES = \ |
| 60 | xyz/openbmc_project/Network/VLAN/Create/server.cpp \ |
Ratan Gupta | db81a8a | 2017-04-20 20:21:25 +0530 | [diff] [blame] | 61 | xyz/openbmc_project/Network/VLAN/Create/server.hpp \ |
| 62 | xyz/openbmc_project/Network/IP/Create/server.cpp \ |
| 63 | xyz/openbmc_project/Network/IP/Create/server.hpp |
| 64 | |
Ratan Gupta | bf9ba40 | 2017-04-14 17:16:04 +0530 | [diff] [blame] | 65 | BUILT_SOURCES = \ |
| 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 |
Ratan Gupta | bf9ba40 | 2017-04-14 17:16:04 +0530 | [diff] [blame] | 70 | |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 71 | phosphor_network_manager_LDFLAGS = \ |
| 72 | $(SYSTEMD_LIBS) \ |
| 73 | $(SDBUSPLUS_LIBS) \ |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 74 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
Ratan Gupta | 11cef80 | 2017-05-29 08:41:48 +0530 | [diff] [blame] | 75 | $(PHOSPHOR_LOGGING_LIBS) \ |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 76 | -lstdc++fs |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 77 | |
| 78 | phosphor_network_manager_CXXFLAGS = \ |
| 79 | $(SYSTEMD_CFLAGS) \ |
| 80 | $(SDBUSPLUS_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 |