diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-07-05 17:17:35 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-07-05 19:17:11 +0200 |
commit | 75526aa1e85a8bacb50e917971010d06137a3610 (patch) | |
tree | 33adc0e2410d8af36148a2901c0a20000e0cdaf5 /coverage/bin | |
parent | 0d05349094ced7eeb487e572beb90fa44dd2ebe0 (diff) |
supervision: Exclude conditionaly the supervision
Exclude from the binder the part related to the supervision
when the supervisor is excluded from the build.
Change-Id: I41193122d63e47b9f0db7f113f88d2d63b783027
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'coverage/bin')
-rw-r--r-- | coverage/bin/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/bin/Makefile b/coverage/bin/Makefile index 3cabefa1..b851ed6c 100644 --- a/coverage/bin/Makefile +++ b/coverage/bin/Makefile @@ -26,7 +26,7 @@ cflags = -I$(incdir) \ -ldl -lrt -lpthread afb_lib_src = $(shell ls $(srcdir)/*.c | egrep -v '/afs-|/main-|-fake' ) -afb_clib_src = $(shell ls $(srcdir)/*.c | egrep -v '/afs-|/main-|-fake|afb-supervision' ) +afb_clib_src = $(shell ls $(srcdir)/*.c | egrep -v '/afs-|/main-|-fake' ) afb_daemon_srcs = $(srcdir)/main-afb-daemon.c $(afb_lib_src) afb_daemon_defs = '-DAFB_VERSION="cov"' -DAGL_DEVEL -DWITH_MONITORING_OPTION '-DBINDING_INSTALL_DIR="fake"' |