Patrick Venture | accc917 | 2018-07-24 10:51:58 -0700 | [diff] [blame] | 1 | AM_DEFAULT_SOURCE_EXT = .cpp |
| 2 | |
| 3 | libflashcmdsdir = ${libdir}/ipmid-providers |
| 4 | libflashcmds_LTLIBRARIES = libflashcmds.la |
Patrick Venture | 54c3b53 | 2018-08-01 11:45:49 -0700 | [diff] [blame] | 5 | libflashcmds_la_SOURCES = main.cpp \ |
| 6 | flash-ipmi.cpp \ |
| 7 | ipmi.cpp |
Patrick Venture | accc917 | 2018-07-24 10:51:58 -0700 | [diff] [blame] | 8 | |
| 9 | libflashcmds_la_LDFLAGS = $(SYSTEMD_LIBS) \ |
Patrick Venture | 9c6baad | 2018-08-07 16:10:45 -0700 | [diff] [blame] | 10 | $(SDBUSPLUS_LIBS) \ |
Patrick Venture | accc917 | 2018-07-24 10:51:58 -0700 | [diff] [blame] | 11 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
| 12 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 13 | -version-info 0:0:0 -shared |
| 14 | libflashcmds_la_CXXFLAGS = $(SYSTEMD_CFLAGS) \ |
Patrick Venture | 9c6baad | 2018-08-07 16:10:45 -0700 | [diff] [blame] | 15 | $(SDBUSPLUS_CFLAGS) \ |
Patrick Venture | accc917 | 2018-07-24 10:51:58 -0700 | [diff] [blame] | 16 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
| 17 | $(PHOSPHOR_LOGGING_CFLAGS) |
| 18 | |
Patrick Venture | 54c3b53 | 2018-08-01 11:45:49 -0700 | [diff] [blame] | 19 | SUBDIRS = . test |