blob: fc2a2dc45d737b0efd2a044fac56bab7f1d54791 [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 \
Matt Spinler7f88fe62017-04-10 14:39:02 -050011 manager.cpp \
12 zone.cpp
Matt Spinlere73446e2017-04-10 13:55:52 -050013
Brad Bishop10484012017-04-24 22:59:18 -040014phosphor_fan_control_LDADD = \
Matt Spinlere2b25cb2017-04-10 14:33:35 -050015 $(top_builddir)/libfan.la \
Brad Bishop10484012017-04-24 22:59:18 -040016 $(SDBUSPLUS_LIBS) \
17 $(PHOSPHOR_LOGGING_LIBS)
18
19phosphor_fan_control_CXXFLAGS = \
20 $(SDBUSPLUS_CFLAGS) \
21 $(PHOSPHOR_LOGGING_CFLAGS)