hooks: Allow to remove hooking (and/or trace)
[src/app-framework-binder.git] / coverage / bin / Makefile
1
2 .PHONY: clean binaries
3
4 heredir = .
5 basedir = ../..
6
7 bindings = \
8         hi3.so \
9         hello.so \
10         salut.so \
11         salam.so \
12         shalom.so \
13         demat.so \
14         hellov2.so
15
16 bugs = $(foreach i,\
17         1 2 3 4 5 6 7 8 9 \
18         10 11 12 13 14 15 16 17 18 19 \
19         20 21, \
20         bugs/bug$i.so)
21
22 tests = \
23         test-apiset \
24         test-session \
25         test-wrap-json
26
27 targets = \
28         afb-daemon-cov \
29         afb-client \
30         $(tests) \
31         $(bindings) \
32         $(bugs)
33
34 binaries: $(targets)
35
36 clean:
37         @echo remove all binaries
38         @rm $(targets) *.gcno *.gcda *.o  2>/dev/null || true
39
40 #======================================================================================
41 # definitions
42 #======================================================================================
43
44 incdir = $(basedir)/include
45 srcdir = $(basedir)/src
46 tstdir = $(basedir)/src/tests
47 samdir = $(basedir)/bindings/samples
48
49 bindir = $(heredir)/bin
50
51 deps = openssl libmicrohttpd json-c libsystemd uuid
52
53 ccflags = \
54         -g \
55         -I$(incdir) \
56         $(shell pkg-config --cflags $(deps))
57
58 ldflags = -ldl -lrt -lpthread \
59         $(shell pkg-config --libs $(deps))
60
61 cflags = $(ccflags) $(ldflags)
62
63 defs =  -DAGL_DEVEL \
64         -DWITH_MONITORING_OPTION \
65         -DAFB_VERSION=\"cov\" \
66         -DUSE_SIG_MONITOR_DUMPSTACK=1 \
67         -DUSE_SIG_MONITOR_SIGNALS=1 \
68         -DUSE_SIG_MONITOR_FOR_CALL=1 \
69         -DUSE_SIG_MONITOR_TIMERS=1 \
70         -DWITH_AFB_HOOK=1 \
71         -DWITH_AFB_TRACE=1 \
72         -DBINDING_INSTALL_DIR=\"$(shell pwd)/fake\"
73
74 afb_lib_src = $(shell ls $(srcdir)/*.c | egrep -v '/afs-|/main-|/fdev-epoll.c|/afb-ws-client.c' )
75 afb_lib_obj = $(patsubst $(srcdir)/%.c,%.o,$(afb_lib_src))
76 afb_lib = afb-lib.a
77 afb_lib_defs = $(defs)
78
79 afb_daemon_srcs = $(srcdir)/main-afb-daemon.c $(afb_lib_obj)
80 afb_daemon_defs = $(afb_lib_defs)
81
82 afb_client_srcs = $(srcdir)/main-afb-client-demo.c $(srcdir)/afb-ws-client.c $(afb_lib_src)
83 afb_client_defs = $(defs)
84
85 tst_defs = $(defs)
86 tst_flags = $(cflags) \
87         -I$(srcdir) \
88         $(shell pkg-config --cflags --libs check)
89
90 tst_defs = '-DAFB_VERSION="cov"' '-DBINDING_INSTALL_DIR="fake"'
91 tst_flags = $(cflags) \
92         -I$(srcdir) \
93         $(shell pkg-config --cflags --libs check)
94
95 hello2_src = $(samdir)/hello2.c
96 hello3_src = $(samdir)/hello3.c
97 hi_src = $(samdir)/hi3.c
98 binding_flags = -shared -fPIC -Wl,--version-script=$(samdir)/export.map
99
100 #======================================================================================
101 # creates the targets
102 #======================================================================================
103
104 %.o: $(srcdir)/%.c
105         @echo creation of $@
106         @gcc -c -o $@ $< --coverage $(afb_lib_defs) $(ccflags)
107
108 afb-daemon-cov: $(afb_daemon_srcs)
109         @echo creation of $@
110         @gcc -o $@ $(afb_daemon_srcs) --coverage $(afb_daemon_defs) $(cflags)
111
112 afb-client: $(afb_client_srcs)
113         @echo creation of $@
114         @gcc -o $@ $(afb_client_srcs) $(afb_client_defs) $(cflags)
115
116 #======================================================================================
117 # create test
118 #======================================================================================
119
120 test-apiset: $(tstdir)/apiset/test-apiset.c $(afb_lib_obj)
121         @echo creation of $@
122         @gcc -o $@ $(tstdir)/apiset/test-apiset.c $(afb_lib_obj) --coverage $(tst_defs) $(tst_flags)
123
124 test-session: $(tstdir)/session/test-session.c $(afb_lib_obj)
125         @echo creation of $@
126         @gcc -o $@ $(tstdir)/session/test-session.c $(afb_lib_obj) --coverage $(tst_defs) $(tst_flags)
127
128 test-wrap-json: $(tstdir)/session/test-session.c $(afb_lib_obj)
129         @echo creation of $@
130         @gcc -o $@ $(tstdir)/wrap-json/test-wrap-json.c $(afb_lib_obj) --coverage $(tst_defs) $(tst_flags)
131
132 #======================================================================================
133 # create bindings
134 #======================================================================================
135
136 hi3.so: $(hi3_src)
137         @echo creation of $@
138         @gcc -o $@ $(hi3_src) $(binding_flags) $(cflags)
139
140 hello.so: $(hello3_src)
141         @echo creation of $@
142         @gcc -o $@ $(hello3_src) '-DAPINAME="hello"' '-DPREINIT_PROVIDE_CLASS="class1 class2"' $(binding_flags) $(cflags)
143
144 salut.so: $(hello3_src)
145         @echo creation of $@
146         @gcc -o $@ $(hello3_src) '-DAPINAME="salut"' '-DPREINIT_REQUIRE_CLASS="class2"' $(binding_flags) $(cflags)
147
148 salam.so: $(hello3_src)
149         @echo creation of $@
150         @gcc -o $@ $(hello3_src) '-DAPINAME="salam"' '-DINIT_REQUIRE_API="hello salut"' $(binding_flags) $(cflags)
151
152 shalom.so: $(hello3_src)
153         @echo creation of $@
154         @gcc -o $@ $(hello3_src) '-DAPINAME="shalom"' $(binding_flags) $(cflags)
155
156 demat.so: $(hello3_src)
157         @echo creation of $@
158         @gcc -o $@ $(hello3_src) '-DAPINAME="demat"' $(binding_flags) $(cflags)
159
160 hellov2.so: $(hello2_src)
161         @echo creation of $@
162         @gcc -o $@ $(hello2_src) '-DAPINAME="hello-v2"' $(binding_flags) $(cflags)
163
164 #======================================================================================
165 # create bugs
166 #======================================================================================
167
168 bugs:
169         @echo creation of directory bugs
170         @mkdir bugs
171
172 bugs/bug%.so: bug.c bugs
173         @echo creation of $@
174         @gcc -o $@ bug.c $(binding_flags) $(cflags) -D$(patsubst bugs/bug%.so,BUG%,$@)