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 \ |
Marri Devender Rao | f4d6348 | 2019-05-02 06:35:34 -0500 | [diff] [blame] | 7 | certificate.hpp \ |
Marri Devender Rao | ffad1ef | 2019-06-03 04:54:12 -0500 | [diff] [blame] | 8 | csr.hpp \ |
| 9 | watch.hpp |
Jayanth Othayoth | 0aa0d11 | 2018-09-03 03:47:27 -0500 | [diff] [blame] | 10 | |
Patrick Venture | 278a6a6 | 2019-03-28 12:57:35 -0700 | [diff] [blame] | 11 | bin_PROGRAMS = \ |
Jayanth Othayoth | 0aa0d11 | 2018-09-03 03:47:27 -0500 | [diff] [blame] | 12 | phosphor-certificate-manager |
| 13 | |
| 14 | phosphor_certificate_manager_SOURCES = \ |
| 15 | mainapp.cpp \ |
Jayanth Othayoth | cfbc8dc | 2018-09-03 07:22:27 -0500 | [diff] [blame] | 16 | certs_manager.cpp \ |
Marri Devender Rao | 6ceec40 | 2019-02-01 03:15:19 -0600 | [diff] [blame] | 17 | argument.cpp \ |
Marri Devender Rao | f4d6348 | 2019-05-02 06:35:34 -0500 | [diff] [blame] | 18 | certificate.cpp \ |
Marri Devender Rao | ffad1ef | 2019-06-03 04:54:12 -0500 | [diff] [blame] | 19 | csr.cpp \ |
| 20 | watch.cpp |
Jayanth Othayoth | cfbc8dc | 2018-09-03 07:22:27 -0500 | [diff] [blame] | 21 | |
| 22 | phosphor_certificate_manager_LDFLAGS = \ |
| 23 | $(SDBUSPLUS_LIBS) \ |
Marri Devender Rao | f468271 | 2019-03-19 05:00:28 -0500 | [diff] [blame] | 24 | $(SDEVENTPLUS_LIBS) \ |
Jayanth Othayoth | cfbc8dc | 2018-09-03 07:22:27 -0500 | [diff] [blame] | 25 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
Patrick Venture | 3dd7401 | 2018-12-03 07:46:55 -0800 | [diff] [blame] | 26 | $(PHOSPHOR_LOGGING_LIBS) \ |
Patrick Venture | 8d100c1 | 2018-12-03 08:36:00 -0800 | [diff] [blame] | 27 | $(OPENSSL_LIBS) \ |
| 28 | -lstdc++fs |
Jayanth Othayoth | cfbc8dc | 2018-09-03 07:22:27 -0500 | [diff] [blame] | 29 | |
| 30 | phosphor_certificate_manager_CXXFLAGS = \ |
| 31 | $(SYSTEMD_CFLAGS) \ |
Marri Devender Rao | f468271 | 2019-03-19 05:00:28 -0500 | [diff] [blame] | 32 | $(SDEVENTPLUS_LIBS) \ |
Patrick Venture | 3dd7401 | 2018-12-03 07:46:55 -0800 | [diff] [blame] | 33 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
| 34 | $(PHOSPHOR_LOGGING_CFLAGS) |
Marri Devender Rao | 947258d | 2018-09-25 10:52:24 -0500 | [diff] [blame] | 35 | |
| 36 | SUBDIRS = . test |