Correct inability to extend payload for rts msg
[ric-plt/lib/rmr.git] / test / app_test / Makefile
1 #
2 #=================================================================================
3 #    Copyright (c) 2019 Nokia
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 # NOTE:  this makefile assumes that RMr has been built using the directory .build
21 #               at the top most repo directory (e.g. ../../.build). It can be changed 
22 #               if you need to by adding "build_path=<path>" to the make command line.
23 #               To use this makefile to build on a system where RMr is already installed
24 #               try:    make build_path=/usr/local/lib
25 #
26 #               By default we prefer the Korn shell (it's just better). If you really need
27 #               to build with a dfferent shell add "SHELL=path" to the command line:
28 #                               make SHELL=/bin/bash
29 #
30
31 .EXPORT_ALL_VARIABLES:
32 .ONESHELL:
33 #.SHELLFLAGS = -e       # hosed on some flavours so keep it off
34 SHELL ?= /bin/ksh
35
36 ex_cflags = $(shell echo $$EX_CFLAGS )
37
38 build_path ?= ../../.build
39 header_path := $(shell find $(build_path) -name 'rmr.h' |head -1 | sed 's!/rmr/.*!!' )
40
41 C_INCLUDE_PATH := $(header_path)
42 LD_LIBRARY_PATH=$(build_path):$(build_path)/lib
43 LIBRARY_PATH = $(LD_LIBRARY_PATH)
44
45 # These programmes are designed to test some basic application level functions
46 # from the perspective of two, or more, communicating processes. 
47
48
49 .PHONY: all
50 all: sender receiver caller mt_receiver v_sender ex_rts_receiver
51
52 receiver: receiver.c
53         gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm
54
55 mt_receiver: receiver.c
56         gcc -I $${C_INCLUDE_PATH:-.} -DMTC $< -g -o $@ -lrmr_nng -lnng -lpthread -lm
57
58 lreceiver: lreceiver.c
59         gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm
60
61 ex_rts_receiver: ex_rts_receiver.c
62         gcc $(ex_cflags) -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm
63
64 v_sender: v_sender.c
65         gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm
66
67 sender: sender.c
68         gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm
69
70 caller: caller.c
71         gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm
72
73 lcaller: lcaller.c
74         gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@  -lrmr_nng -lnng -lpthread -lm
75
76 lsender: lsender.c
77
78 # clean removes intermediates; nuke removes everything that can be built
79 .PHONY: clean nuke
80 clean:
81         rm -f *.o
82
83 nuke: clean
84         rm -f sender receiver caller mt_receiver