Jayanth Othayoth | 0aa0d11 | 2018-09-03 03:47:27 -0500 | [diff] [blame] | 1 | AM_DEFAULT_SOURCE_EXT = .cpp |
| 2 | |
| 3 | # Build these headers, don't install them |
| 4 | noinst_HEADERS = \ |
Jayanth Othayoth | cfbc8dc | 2018-09-03 07:22:27 -0500 | [diff] [blame] | 5 | certs_manager.hpp \ |
Marri Devender Rao | 6ceec40 | 2019-02-01 03:15:19 -0600 | [diff] [blame^] | 6 | argument.hpp \ |
| 7 | certificate.hpp |
Jayanth Othayoth | 0aa0d11 | 2018-09-03 03:47:27 -0500 | [diff] [blame] | 8 | |
| 9 | sbin_PROGRAMS = \ |
| 10 | phosphor-certificate-manager |
| 11 | |
| 12 | phosphor_certificate_manager_SOURCES = \ |
| 13 | mainapp.cpp \ |
Jayanth Othayoth | cfbc8dc | 2018-09-03 07:22:27 -0500 | [diff] [blame] | 14 | certs_manager.cpp \ |
Marri Devender Rao | 6ceec40 | 2019-02-01 03:15:19 -0600 | [diff] [blame^] | 15 | argument.cpp \ |
| 16 | certificate.cpp |
Jayanth Othayoth | cfbc8dc | 2018-09-03 07:22:27 -0500 | [diff] [blame] | 17 | |
| 18 | phosphor_certificate_manager_LDFLAGS = \ |
| 19 | $(SDBUSPLUS_LIBS) \ |
| 20 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
Patrick Venture | 3dd7401 | 2018-12-03 07:46:55 -0800 | [diff] [blame] | 21 | $(PHOSPHOR_LOGGING_LIBS) \ |
Patrick Venture | 8d100c1 | 2018-12-03 08:36:00 -0800 | [diff] [blame] | 22 | $(OPENSSL_LIBS) \ |
| 23 | -lstdc++fs |
Jayanth Othayoth | cfbc8dc | 2018-09-03 07:22:27 -0500 | [diff] [blame] | 24 | |
| 25 | phosphor_certificate_manager_CXXFLAGS = \ |
| 26 | $(SYSTEMD_CFLAGS) \ |
Patrick Venture | 3dd7401 | 2018-12-03 07:46:55 -0800 | [diff] [blame] | 27 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
| 28 | $(PHOSPHOR_LOGGING_CFLAGS) |
Marri Devender Rao | 947258d | 2018-09-25 10:52:24 -0500 | [diff] [blame] | 29 | |
| 30 | SUBDIRS = . test |