blob: a597c38c1e272da065134e9596f16990c3db3c83 [file] [log] [blame]
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -05001AM_DEFAULT_SOURCE_EXT = .cpp
2
3# Build these headers, don't install them
4noinst_HEADERS = \
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -05005 certs_manager.hpp \
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -05006 argument.hpp
7
8sbin_PROGRAMS = \
9 phosphor-certificate-manager
10
11phosphor_certificate_manager_SOURCES = \
12 mainapp.cpp \
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050013 certs_manager.cpp \
Jayanth Othayoth0aa0d112018-09-03 03:47:27 -050014 argument.cpp
Jayanth Othayothcfbc8dc2018-09-03 07:22:27 -050015
16phosphor_certificate_manager_LDFLAGS = \
17 $(SDBUSPLUS_LIBS) \
18 $(PHOSPHOR_DBUS_INTERFACES_LIBS) \
19 -lstdc++fs
20
21phosphor_certificate_manager_CXXFLAGS = \
22 $(SYSTEMD_CFLAGS) \
23 $(PHOSPHOR_DBUS_INTERFACES_CFLAGS)