Deepak Kodihalli | 5de0957 | 2017-05-16 23:53:40 -0500 | [diff] [blame] | 1 | AM_DEFAULT_SOURCE_EXT = .cpp |
| 2 | |
| 3 | BUILT_SOURCES = \ |
| 4 | settings_manager.hpp |
| 5 | CLEANFILES = \ |
| 6 | settings_manager.hpp |
| 7 | |
| 8 | SETTINGS_GEN_SCRIPT ?= \ |
| 9 | ${abs_srcdir}/settings.py |
| 10 | SETTINGS_GEN_SCRIPT_FILES ?= \ |
| 11 | ${abs_srcdir}/settings_example.yaml \ |
| 12 | ${abs_srcdir}/settings_manager.mako.hpp |
| 13 | |
| 14 | settings_manager.hpp: ${SETTINGS_GEN_SCRIPT} ${SETTINGS_GEN_SCRIPT_FILES} |
| 15 | $(AM_V_GEN)@SETTINGSGEN@ |
| 16 | |
| 17 | # Build these headers, don't install them |
| 18 | noinst_HEADERS = \ |
| 19 | settings_manager.hpp |
| 20 | |
Patrick Venture | f1d09b0 | 2019-03-28 11:30:32 -0700 | [diff] [blame] | 21 | bin_PROGRAMS = \ |
Deepak Kodihalli | 5de0957 | 2017-05-16 23:53:40 -0500 | [diff] [blame] | 22 | phosphor-settings-manager |
| 23 | |
| 24 | phosphor_settings_manager_SOURCES = \ |
| 25 | settings_main.cpp |
| 26 | |
| 27 | phosphor_settings_manager_CXXFLAGS = \ |
| 28 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
Dhruvaraj Subhashchandran | 61d3b6a | 2017-07-25 09:36:54 -0500 | [diff] [blame] | 29 | $(SDBUSPLUS_CFLAGS) \ |
Kun Yi | 3d805fe | 2019-10-07 13:25:05 -0700 | [diff] [blame] | 30 | $(PHOSPHOR_LOGGING_CFLAGS) |
Deepak Kodihalli | 5de0957 | 2017-05-16 23:53:40 -0500 | [diff] [blame] | 31 | |
| 32 | phosphor_settings_manager_LDADD = \ |
| 33 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
Deepak Kodihalli | 7a6f252 | 2017-06-23 23:05:47 -0500 | [diff] [blame] | 34 | $(SDBUSPLUS_LIBS) \ |
Kun Yi | 3d805fe | 2019-10-07 13:25:05 -0700 | [diff] [blame] | 35 | $(PHOSPHOR_LOGGING_LIBS) \ |
Deepak Kodihalli | 7a6f252 | 2017-06-23 23:05:47 -0500 | [diff] [blame] | 36 | -lstdc++fs |