5a0a90e4207a3b89f1509d978d03c12ff57015dd
[ric-app/mc.git] / sidecars / listener / test / Makefile
1 # vim: ts=4 sw=4 noet:
2 #----------------------------------------------------------------------------------
3 #
4 #       Copyright (c) 2018-2019 AT&T Intellectual Property.
5 #
6 #   Licensed under the Apache License, Version 2.0 (the "License");
7 #   you may not use this file except in compliance with the License.
8 #   You may obtain a copy of the License at
9 #
10 #          http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #   Unless required by applicable law or agreed to in writing, software
13 #   distributed under the License is distributed on an "AS IS" BASIS,
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #   See the License for the specific language governing permissions and
16 #   limitations under the License.
17 #
18 #---------------------------------------------------------------------------------
19
20 # this make file assuems that both NNG and RMR are installed and that the variables
21 # LD_LIBRARY_PATH, LIBRARY_PATH are set correctly.
22
23 testers = sender pipe_reader sender
24
25 test_progs = sender unit_test pipe_reader
26 lib_obj = mcl.o rdc.o
27 lib_h = mcl.h
28
29 coverage_opts = -ftest-coverage -fprofile-arcs
30
31 # make with no parms should build tests
32 all: tests
33
34
35 # ---- testing stuff -----------------------------------------------------------------
36 tests: $(test_progs)
37
38
39 unit_test: unit_test.c ../mcl.c ../rdc.c
40         gcc -g $(coverage_opts) unit_test.c -o unit_test -lrmr_si -lm -lpthread
41
42 # ---- housekeeping stuff -------------------------------------------------------------
43 # remove only intermediates
44 clean:
45         rm -f *.o *.gcda *.gcno *.gcov
46
47 # remove anything that can be rebuilt
48 nuke: clean
49         rm -f *mcl.a $(test_progs)
50