blob: 56ba9487cc458c293214e2e70a2e550cdb0bdc4f [file] [log] [blame]
Matt Spinlere73446e2017-04-10 13:55:52 -05001AM_DEFAULT_SOURCE_EXT = .cpp
Brad Bishop9df0e162017-04-22 14:19:45 -04002AM_CPPFLAGS = -iquote ${top_srcdir}
Matt Spinlere73446e2017-04-10 13:55:52 -05003
4sbin_PROGRAMS = \
5 phosphor-fan-control
6
7phosphor_fan_control_SOURCES = \
Matt Spinlere10416e2017-04-10 14:15:53 -05008 generated.cpp \
Matt Spinlere2b25cb2017-04-10 14:33:35 -05009 fan.cpp \
Matt Spinlere10416e2017-04-10 14:15:53 -050010 main.cpp \
11 manager.cpp
Matt Spinlere73446e2017-04-10 13:55:52 -050012
Brad Bishop10484012017-04-24 22:59:18 -040013phosphor_fan_control_LDADD = \
Matt Spinlere2b25cb2017-04-10 14:33:35 -050014 $(top_builddir)/libfan.la \
Brad Bishop10484012017-04-24 22:59:18 -040015 $(SDBUSPLUS_LIBS) \
16 $(PHOSPHOR_LOGGING_LIBS)
17
18phosphor_fan_control_CXXFLAGS = \
19 $(SDBUSPLUS_CFLAGS) \
20 $(PHOSPHOR_LOGGING_CFLAGS)