Deepak Kodihalli | 4779531 | 2017-03-17 07:12:08 -0500 | [diff] [blame] | 1 | # Build these headers, don't install them |
| 2 | noinst_HEADERS = \ |
Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 3 | occ_pass_through.hpp \ |
Andrew Geissler | 32016d1 | 2017-06-20 15:46:52 -0500 | [diff] [blame] | 4 | occ_status.hpp \ |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 5 | powercap.hpp \ |
| 6 | occ_errors.hpp \ |
Deepak Kodihalli | 5f031f3 | 2017-07-26 08:25:59 -0500 | [diff] [blame] | 7 | occ_events.hpp \ |
Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 8 | occ_finder.hpp \ |
| 9 | utils.hpp |
Deepak Kodihalli | 4779531 | 2017-03-17 07:12:08 -0500 | [diff] [blame] | 10 | |
Lei YU | 6c56a4a | 2017-07-14 11:07:37 +0800 | [diff] [blame] | 11 | noinst_LTLIBRARIES = libocc_control.la |
| 12 | |
Deepak Kodihalli | 92a6341 | 2017-03-17 05:01:00 -0500 | [diff] [blame] | 13 | sbin_PROGRAMS = openpower-occ-control |
Lei YU | 6c56a4a | 2017-07-14 11:07:37 +0800 | [diff] [blame] | 14 | |
Deepak Kodihalli | 92a6341 | 2017-03-17 05:01:00 -0500 | [diff] [blame] | 15 | openpower_occ_control_SOURCES = \ |
Lei YU | 6c56a4a | 2017-07-14 11:07:37 +0800 | [diff] [blame] | 16 | app.cpp |
| 17 | |
| 18 | libocc_control_la_SOURCES = \ |
Deepak Kodihalli | 6b492fb | 2017-03-18 01:09:28 -0500 | [diff] [blame] | 19 | occ_pass_through.cpp \ |
Vishwanatha Subbanna | 307d80b | 2017-06-28 15:56:09 +0530 | [diff] [blame] | 20 | occ_status.cpp \ |
Vishwanatha Subbanna | 32e84e9 | 2017-06-28 19:17:28 +0530 | [diff] [blame] | 21 | occ_device.cpp \ |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 22 | occ_errors.cpp \ |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 23 | powercap.cpp \ |
Deepak Kodihalli | 5f031f3 | 2017-07-26 08:25:59 -0500 | [diff] [blame] | 24 | org/open_power/OCC/Device/error.cpp \ |
Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 25 | occ_finder.cpp \ |
Lei YU | 0ab90ca | 2017-07-13 17:02:23 +0800 | [diff] [blame] | 26 | i2c_occ.cpp \ |
Vishwanatha Subbanna | 30e329a | 2017-07-24 23:13:14 +0530 | [diff] [blame] | 27 | utils.cpp |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 28 | |
Lei YU | 6c56a4a | 2017-07-14 11:07:37 +0800 | [diff] [blame] | 29 | openpower_occ_control_LDADD = libocc_control.la -lstdc++fs |
| 30 | |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 31 | BUILT_SOURCES = org/open_power/OCC/Device/error.hpp \ |
Vishwanatha Subbanna | 6add0b8 | 2017-07-21 19:02:37 +0530 | [diff] [blame] | 32 | org/open_power/OCC/Device/error.cpp \ |
| 33 | occ_sensor.hpp |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 34 | |
| 35 | CLEANFILES = ${BUILT_SOURCES} |
Deepak Kodihalli | 92a6341 | 2017-03-17 05:01:00 -0500 | [diff] [blame] | 36 | |
Vishwanatha Subbanna | 6add0b8 | 2017-07-21 19:02:37 +0530 | [diff] [blame] | 37 | REQ_MAKO_FILE ?= ${top_srcdir}/occ_sensor.mako.hpp |
| 38 | REQ_PY_SCRIPT ?= ${top_srcdir}/sensor_gen.py |
| 39 | |
| 40 | EXTRA_DIST = $(REQ_MAKO_FILE) $(REQ_PY_SCRIPT) |
| 41 | |
| 42 | occ_sensor.hpp: ${REQ_PY_SCRIPT} ${REQ_MAKO_FILE} |
| 43 | $(AM_V_GEN) ${PYTHON} ${REQ_PY_SCRIPT} -i ${YAML_PATH} > $@ |
| 44 | |
Lei YU | 6c56a4a | 2017-07-14 11:07:37 +0800 | [diff] [blame] | 45 | |
| 46 | generic_ld_flags = \ |
Deepak Kodihalli | 92a6341 | 2017-03-17 05:01:00 -0500 | [diff] [blame] | 47 | $(SDBUSPLUS_LIBS) \ |
| 48 | $(PHOSPHOR_LOGGING_LIBS) \ |
Deepak Kodihalli | fd358d1 | 2017-05-08 07:11:22 -0500 | [diff] [blame] | 49 | $(OPENPOWER_DBUS_INTERFACES_LIBS) \ |
Lei YU | 6c56a4a | 2017-07-14 11:07:37 +0800 | [diff] [blame] | 50 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 51 | |
Lei YU | 6c56a4a | 2017-07-14 11:07:37 +0800 | [diff] [blame] | 52 | generic_cxx_flags = \ |
Deepak Kodihalli | 92a6341 | 2017-03-17 05:01:00 -0500 | [diff] [blame] | 53 | $(SDBUSPLUS_CFLAGS) \ |
| 54 | $(PHOSPHOR_LOGGING_CFLAGS) \ |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 55 | $(OPENPOWER_DBUS_INTERFACES_CFLAGS) \ |
| 56 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 57 | |
Lei YU | 6c56a4a | 2017-07-14 11:07:37 +0800 | [diff] [blame] | 58 | libocc_control_la_CXXFLAGS = $(generic_cxx_flags) |
| 59 | |
| 60 | libocc_control_la_LDFLAGS = $(generic_ld_flags) |
| 61 | |
| 62 | openpower_occ_control_CXXFLAGS = $(generic_cxx_flags) |
| 63 | |
| 64 | openpower_occ_control_LDFLAGS = $(generic_ld_flags) |
| 65 | |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 66 | org/open_power/OCC/Device/error.hpp: ${top_srcdir}/org/open_power/OCC/Device.errors.yaml |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 67 | @mkdir -p `dirname $@` |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 68 | $(SDBUSPLUSPLUS) -r $(top_srcdir) error exception-header org.open_power.OCC.Device > $@ |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 69 | |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 70 | org/open_power/OCC/Device/error.cpp: ${top_srcdir}/org/open_power/OCC/Device.errors.yaml |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 71 | @mkdir -p `dirname $@` |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 72 | $(SDBUSPLUSPLUS) -r $(top_srcdir) error exception-cpp org.open_power.OCC.Device > $@ |
Andrew Geissler | 4cea4d2 | 2017-07-10 15:13:33 -0500 | [diff] [blame] | 73 | |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 74 | SUBDIRS = . test |