blob: d9880fba7f499391e112a51e71dfd2042d37e8c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
AM_DEFAULT_SOURCE_EXT = .cpp
ACLOCAL_AMFLAGS = -Im4
sbin_PROGRAMS = \
openpower-update-manager
openpower_update_manager_SOURCES = \
activation.cpp \
version.cpp \
serialize.cpp \
item_updater.cpp \
item_updater_main.cpp
nodist_openpower_update_manager_SOURCES = \
org/openbmc/Associations/server.cpp
CLEANFILES = \
org/openbmc/Associations/server.cpp \
org/openbmc/Associations/server.hpp
BUILT_SOURCES = \
org/openbmc/Associations/server.cpp \
org/openbmc/Associations/server.hpp
generic_cxxflags = \
$(SYSTEMD_CFLAGS) \
$(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \
$(SDBUSPLUS_CFLAGS) \
$(PHOSPHOR_LOGGING_CFLAGS)
generic_ldflags = \
$(SYSTEMD_LIBS) \
$(PHOSPHOR_DBUS_INTERFACES_LIBS) \
$(SDBUSPLUS_LIBS) \
$(PHOSPHOR_LOGGING_LIBS) \
-lstdc++fs
org/openbmc/Associations/server.cpp: org/openbmc/Associations.interface.yaml
@mkdir -p `dirname $@`
$(SDBUSPLUSPLUS) -r $(srcdir) interface server-cpp org.openbmc.Associations > $@
org/openbmc/Associations/server.hpp: org/openbmc/Associations.interface.yaml
@mkdir -p `dirname $@`
$(SDBUSPLUSPLUS) -r $(srcdir) interface server-header org.openbmc.Associations > $@
openpower_update_manager_CXXFLAGS = $(generic_cxxflags)
openpower_update_manager_LDFLAGS = $(generic_ldflags)
SUBDIRS = test
|