diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-07-05 16:27:54 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-07-05 19:17:03 +0200 |
commit | 0d05349094ced7eeb487e572beb90fa44dd2ebe0 (patch) | |
tree | 57af8fbbe793a8b7a1b625525cc0f09646f7f16e /coverage/bin/Makefile | |
parent | 65bbbd793955336bad0fe80e48f952a2a9a5e6bf (diff) |
Simplify build process
Allows to compile all files even if it isn't
required to simplify the build process.
Change-Id: Ie09e99794aa9f57b179c7e4cfa882859958beb7a
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'coverage/bin/Makefile')
-rw-r--r-- | coverage/bin/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/bin/Makefile b/coverage/bin/Makefile index c033ffd4..3cabefa1 100644 --- a/coverage/bin/Makefile +++ b/coverage/bin/Makefile @@ -25,8 +25,8 @@ cflags = -I$(incdir) \ $(shell pkg-config --cflags --libs openssl libmicrohttpd json-c libsystemd uuid) \ -ldl -lrt -lpthread -afb_lib_src = $(shell ls $(srcdir)/*.c | egrep -v '/afs-|/main-|-so-v1|-so-vdyn|-fake|-api-dbus|-api-v1' ) -afb_clib_src = $(shell ls $(srcdir)/*.c | egrep -v '/afs-|/main-|-so-v1|-so-vdyn|-fake|-api-dbus|-api-v1|afb-supervision' ) +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_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"' |