Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 1 | AM_DEFAULT_SOURCE_EXT = .cpp |
| 2 | |
Patrick Venture | c0f499b | 2018-09-14 17:57:42 -0700 | [diff] [blame] | 3 | HANDLERS = |
| 4 | |
| 5 | if ENABLE_EXAMPLE |
| 6 | HANDLERS += example/example.cpp |
| 7 | endif |
| 8 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 9 | libblobcmdsdir = ${libdir}/ipmid-providers |
| 10 | libblobcmds_LTLIBRARIES = libblobcmds.la |
| 11 | libblobcmds_la_SOURCES = main.cpp \ |
| 12 | ipmi.cpp \ |
| 13 | manager.cpp \ |
| 14 | process.cpp \ |
Patrick Venture | c0f499b | 2018-09-14 17:57:42 -0700 | [diff] [blame] | 15 | crc.cpp \ |
| 16 | $(HANDLERS) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 17 | |
| 18 | libblobcmds_la_LDFLAGS = $(SYSTEMD_LIBS) \ |
| 19 | -version-info 0:0:0 -shared |
| 20 | |
| 21 | libblobcmds_la_CXXFLAGS = $(SYSTEMD_CFLAGS) |
| 22 | |
Patrick Venture | aceb4ba | 2018-09-27 14:50:37 -0700 | [diff] [blame] | 23 | nobase_include_HEADERS = \ |
| 24 | blobs-ipmid/blobs.hpp \ |
| 25 | blobs-ipmid/manager.hpp |
| 26 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 27 | SUBDIRS = . test |