summaryrefslogtreecommitdiffstats
path: root/coverage/bin/Makefile
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2018-07-03 18:42:32 +0200
committerJose Bollo <jose.bollo@iot.bzh>2018-07-03 19:24:01 +0200
commitf645c76e0bfa772aff97141389d45476bf091053 (patch)
tree724af18ff4b5b92aa071e93675582b67c11d1908 /coverage/bin/Makefile
parent57e09344b57d98515bf02165e0e33a1d43134af0 (diff)
coverage: Add the missing files
The files weren't included due to git and gitignore. Also add a README.md to reproduce the test. Change-Id: Ifcdffaca32c369b2ff5fb82e246fa0cad87813f5 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'coverage/bin/Makefile')
-rw-r--r--coverage/bin/Makefile72
1 files changed, 72 insertions, 0 deletions
diff --git a/coverage/bin/Makefile b/coverage/bin/Makefile
new file mode 100644
index 00000000..a256a9a9
--- /dev/null
+++ b/coverage/bin/Makefile
@@ -0,0 +1,72 @@
+
+.PHONY: clean binaries
+
+heredir = .
+basedir = ../..
+
+targets = afb-daemon-cov afb-client hi3.so hello.so salut.so saha.so demat.so bug.so
+
+binaries: $(targets)
+
+clean:
+ @rm $(targets) *.gcno *.gcda
+
+#======================================================================================
+# creates the targets
+#======================================================================================
+
+incdir = $(basedir)/include
+srcdir = $(basedir)/src
+samdir = $(basedir)/bindings/samples
+
+bindir = $(heredir)/bin
+
+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_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"'
+
+afb_client_srcs = $(srcdir)/main-afb-client-demo.c $(afb_clib_src)
+afb_client_defs = '-DAFB_VERSION="cov"' '-DBINDING_INSTALL_DIR="fake"'
+
+hello3_src = $(samdir)/hello3.c
+hi_src = $(samdir)/hi3.c
+binding_flags = -shared -fPIC -Wl,--version-script=$(samdir)/export.map
+
+afb-daemon-cov: $(afb_daemon_srcs)
+ @echo creation of $@
+ @gcc -o $@ $(afb_daemon_srcs) --coverage $(afb_daemon_defs) $(cflags)
+
+afb-client: $(afb_client_srcs)
+ @echo creation of $@
+ @gcc -o $@ $(afb_client_srcs) $(afb_client_defs) $(cflags)
+
+hi3.so: $(hi3_src)
+ @echo creation of $@
+ @gcc -o $@ $(hi3_src) $(binding_flags) $(cflags)
+
+hello.so: $(hello3_src)
+ @echo creation of $@
+ @gcc -o $@ $(hello3_src) '-DAPINAME="hello"' $(binding_flags) $(cflags)
+
+salut.so: $(hello3_src)
+ @echo creation of $@
+ @gcc -o $@ $(hello3_src) '-DAPINAME="salut"' $(binding_flags) $(cflags)
+
+saha.so: $(hello3_src)
+ @echo creation of $@
+ @gcc -o $@ $(hello3_src) '-DAPINAME="saha"' $(binding_flags) $(cflags)
+
+demat.so: $(hello3_src)
+ @echo creation of $@
+ @gcc -o $@ $(hello3_src) '-DAPINAME="demat"' $(binding_flags) $(cflags)
+
+bug.so: bug.c
+ @echo creation of $@
+ @gcc -o $@ bug.c $(binding_flags) $(cflags)
+