summaryrefslogtreecommitdiff
path: root/Makefile.mesh
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@inai.de>2018-11-25 10:20:09 +0100
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2018-11-26 11:24:35 +0200
commiteb81f12e4a59974638a8b12e67d630478e6bf868 (patch)
tree75fa3cc249d80b1fac3ed8f279cfcbc8b11d0ee9 /Makefile.mesh
parent06dbb223fbe50acc48b3ba1d33cb424275b4baaa (diff)
downloadbluez-eb81f12e4a59974638a8b12e67d630478e6bf868.tar.gz
build: add missing ELL_CFLAGS
Some targets link ELL_LIBS, which means they also need ELL_CFLAGS in their (or the global) CPPFLAGS.
Diffstat (limited to 'Makefile.mesh')
-rw-r--r--Makefile.mesh4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.mesh b/Makefile.mesh
index 50bcc19ad..4de22ba8c 100644
--- a/Makefile.mesh
+++ b/Makefile.mesh
@@ -21,6 +21,8 @@ mesh_sources = mesh/mesh.h mesh/mesh.c \
mesh/mesh-defs.h
libexec_PROGRAMS += mesh/meshd
+mesh_meshd_CPPFLAGS = $(AM_CPPFLAGS) $(ELL_CFLAGS)
+
mesh_meshd_SOURCES = $(mesh_sources) mesh/main.c
mesh_meshd_LDADD = src/shared/ecc.lo src/shared/queue.lo src/shared/io-ell.lo \
@@ -34,6 +36,8 @@ mesh_btmesh_SOURCES = $(mesh_sources) \
mesh/agent.c \
mesh/btmesh.c
+mesh_btmesh_CPPFLAGS = $(AM_CPPFLAGS) $(ELL_CFLAGS)
+
mesh_btmesh_LDADD = src/shared/ecc.lo src/shared/queue.lo src/shared/io-ell.lo \
src/shared/util.lo src/shared/hci.lo src/shared/mgmt.lo \
src/libshared-mainloop.la \