blob: 74f28dc32deedf49da987cb9f97fdc9cfb47f395 [file] [log] [blame]
Matt Spinlere73446e2017-04-10 13:55:52 -05001AM_DEFAULT_SOURCE_EXT = .cpp
Matthew Barthe6704b92020-10-20 16:14:08 -05002AM_CPPFLAGS = -iquote ${top_srcdir} -I${srcdir}/json -I${srcdir}/json/actions
Matt Spinlere73446e2017-04-10 13:55:52 -05003
Patrick Venture71779ab2019-03-28 11:22:15 -07004bin_PROGRAMS = \
Matt Spinlere73446e2017-04-10 13:55:52 -05005 phosphor-fan-control
6
7phosphor_fan_control_SOURCES = \
Matthew Barthf8ae7a52021-03-05 10:23:43 -06008 main.cpp
Matt Spinlere73446e2017-04-10 13:55:52 -05009
Brad Bishop10484012017-04-24 22:59:18 -040010phosphor_fan_control_LDADD = \
Matthew Barth93af4192019-01-18 09:30:57 -060011 -lstdc++fs \
Brad Bishop10484012017-04-24 22:59:18 -040012 $(SDBUSPLUS_LIBS) \
William A. Kennington III1cfc2f12018-10-19 17:29:46 -070013 $(SDEVENTPLUS_LIBS) \
Dinesh Chinari618027a2017-06-26 23:26:50 -050014 $(PHOSPHOR_LOGGING_LIBS) \
Matthew Barth1826c732020-08-28 08:40:59 -050015 ${PHOSPHOR_DBUS_INTERFACES_LIBS} \
16 $(FMT_LIBS)
Brad Bishop10484012017-04-24 22:59:18 -040017
18phosphor_fan_control_CXXFLAGS = \
19 $(SDBUSPLUS_CFLAGS) \
William A. Kennington III1cfc2f12018-10-19 17:29:46 -070020 $(SDEVENTPLUS_CFLAGS) \
Dinesh Chinari618027a2017-06-26 23:26:50 -050021 $(PHOSPHOR_LOGGING_CFLAGS) \
Andrew Geisslerecd4bc72018-08-27 10:52:23 -070022 ${PHOSPHOR_DBUS_INTERFACES_CFLAGS} \
23 -flto
Matt Spinler77d32d12017-04-12 09:51:41 -050024
Matthew Barth8e1b3822020-11-12 11:57:23 -060025if WANT_JSON_CONTROL
Matthew Barthe6704b92020-10-20 16:14:08 -050026phosphor_fan_control_SOURCES += \
Matthew Barthe6704b92020-10-20 16:14:08 -050027 json/manager.cpp \
28 json/profile.cpp \
29 json/fan.cpp \
30 json/zone.cpp \
31 json/group.cpp \
Matthew Barth0c4b1572020-10-22 14:39:46 -050032 json/event.cpp \
Matthew Barth07fecfc2021-01-29 09:04:43 -060033 json/actions/default_floor.cpp \
Matthew Barth070ee3c2021-01-29 09:58:16 -060034 json/actions/request_target_base.cpp \
Matthew Barth89c2fa12021-02-04 14:50:40 -060035 json/actions/missing_owner_target.cpp \
Matthew Barthdc776c82021-02-25 16:06:16 -060036 json/actions/count_state_target.cpp \
Matthew Barth45c44ea2021-03-03 13:16:14 -060037 json/actions/net_target_increase.cpp \
38 json/actions/net_target_decrease.cpp
Matthew Barthd87f89f2020-07-30 10:41:32 -050039else
Matthew Barthf8ae7a52021-03-05 10:23:43 -060040phosphor_fan_control_SOURCES += \
41 argument.cpp \
42 fan.cpp \
43 manager.cpp \
44 utility.cpp \
45 preconditions.cpp \
46 actions.cpp \
47 triggers.cpp \
48 zone.cpp
Matt Spinler77d32d12017-04-12 09:51:41 -050049BUILT_SOURCES = fan_zone_defs.cpp
Matthew Barthd87f89f2020-07-30 10:41:32 -050050nodist_phosphor_fan_control_SOURCES = \
51 fan_zone_defs.cpp
Matt Spinler77d32d12017-04-12 09:51:41 -050052
53fan_zone_defs.cpp: ${srcdir}/gen-fan-zone-defs.py
Matthew Barth8c8f53d2020-02-18 09:40:13 -060054 $(AM_V_GEN)$(GEN_FAN_ZONE_DEFS) > ${builddir}/$@
Matthew Barthd87f89f2020-07-30 10:41:32 -050055endif