Matt Spinler | f716f32 | 2017-02-28 09:37:38 -0600 | [diff] [blame] | 1 | AM_DEFAULT_SOURCE_EXT = .cpp |
| 2 | |
Anthony Wilson | 171fbdf | 2018-11-01 13:38:50 -0500 | [diff] [blame] | 3 | systemdsystemunit_DATA = \ |
Lakshminarayana R. Kammath | 16ab00c | 2019-06-03 04:33:33 -0500 | [diff] [blame] | 4 | pcie-poweroff@.service \ |
Andrew Jeffery | 424475d | 2019-08-02 18:45:26 +0930 | [diff] [blame] | 5 | xyz.openbmc_project.Control.Host.NMI.service |
Anthony Wilson | 171fbdf | 2018-11-01 13:38:50 -0500 | [diff] [blame] | 6 | |
Patrick Venture | b964c92 | 2019-03-28 13:10:36 -0700 | [diff] [blame] | 7 | bin_PROGRAMS = \ |
Lakshminarayana R. Kammath | 16ab00c | 2019-06-03 04:33:33 -0500 | [diff] [blame] | 8 | openpower-proc-control \ |
| 9 | openpower-proc-nmi |
Matt Spinler | f716f32 | 2017-02-28 09:37:38 -0600 | [diff] [blame] | 10 | |
| 11 | openpower_proc_control_SOURCES = \ |
| 12 | proc_control.cpp \ |
Matt Spinler | 0c0eeff | 2017-02-28 10:06:56 -0600 | [diff] [blame] | 13 | cfam_access.cpp \ |
Matt Spinler | 4e97ebe | 2017-02-28 10:02:16 -0600 | [diff] [blame] | 14 | filedescriptor.cpp \ |
Matt Spinler | d9bdcf7 | 2017-03-09 15:06:23 -0600 | [diff] [blame] | 15 | registration.cpp \ |
Matt Spinler | 83e3732 | 2017-03-09 11:23:17 -0600 | [diff] [blame] | 16 | targeting.cpp \ |
Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 17 | openpower_procedures.cpp \ |
| 18 | ext_interface.cpp |
Matt Spinler | 12bdf05 | 2017-03-09 16:01:39 -0600 | [diff] [blame] | 19 | |
Lakshminarayana R. Kammath | 16ab00c | 2019-06-03 04:33:33 -0500 | [diff] [blame] | 20 | openpower_proc_nmi_SOURCES = \ |
| 21 | nmi_main.cpp \ |
| 22 | nmi_interface.cpp |
| 23 | |
Matt Spinler | 12bdf05 | 2017-03-09 16:01:39 -0600 | [diff] [blame] | 24 | CLEANFILES = openpower_procedures.cpp |
Matt Spinler | f716f32 | 2017-02-28 09:37:38 -0600 | [diff] [blame] | 25 | |
Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 26 | openpower_proc_control_LDFLAGS = $(PHOSPHOR_LOGGING_LIBS) \ |
| 27 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
Matt Spinler | ee401e9 | 2017-09-18 14:15:31 -0500 | [diff] [blame] | 28 | $(OPENPOWER_DBUS_INTERFACES_LIBS) \ |
Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 29 | $(SDBUSPLUS_LIBS) \ |
| 30 | -lstdc++fs |
| 31 | |
Dhruvaraj Subhashchandran | 7ce535c | 2017-05-15 05:06:36 -0500 | [diff] [blame] | 32 | openpower_proc_control_CXXFLAGS = $(PHOSPHOR_LOGGING_CFLAGS) \ |
Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 33 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
Matt Spinler | ee401e9 | 2017-09-18 14:15:31 -0500 | [diff] [blame] | 34 | $(OPENPOWER_DBUS_INTERFACES_CFLAGS) \ |
Andrew Geissler | 2548c7a | 2017-05-18 15:35:40 -0500 | [diff] [blame] | 35 | $(SDBUSPLUS_CFLAGS) |
Matt Spinler | 597e05c | 2017-02-28 09:59:53 -0600 | [diff] [blame] | 36 | |
Lakshminarayana R. Kammath | 16ab00c | 2019-06-03 04:33:33 -0500 | [diff] [blame] | 37 | openpower_proc_nmi_LDFLAGS = $(PHOSPHOR_LOGGING_LIBS) \ |
| 38 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
| 39 | $(SDBUSPLUS_LIBS) |
| 40 | |
| 41 | openpower_proc_nmi_CXXFLAGS = $(PHOSPHOR_LOGGING_CFLAGS) \ |
| 42 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
| 43 | $(SDBUSPLUS_CFLAGS) |
| 44 | |
Matt Spinler | 597e05c | 2017-02-28 09:59:53 -0600 | [diff] [blame] | 45 | SUBDIRS = test |
Matt Spinler | 12bdf05 | 2017-03-09 16:01:39 -0600 | [diff] [blame] | 46 | |
| 47 | -include Makefile.generated |