blob: edff57e61e525138d734fdedbad2091673e46917 [file] [log] [blame]
E. Scott Danielsd9de79a2019-10-31 09:20:33 -04001#
2#=================================================================================
E. Scott Daniels02e8d492020-01-21 12:23:28 -05003# Copyright (c) 2019-2020 Nokia
4# Copyright (c) 2018-2020 AT&T Intellectual Property.
E. Scott Danielse8a5b2c2019-04-22 17:04:10 +00005#
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
E. Scott Danielsec88d3c2019-11-13 09:40:22 -050020# NOTE: this makefile assumes that RMR has been built using the directory .build
E. Scott Danielse8a5b2c2019-04-22 17:04:10 +000021# 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.
E. Scott Danielsec88d3c2019-11-13 09:40:22 -050023# To use this makefile to build on a system where RMR is already installed
E. Scott Daniels412d53d2019-05-20 20:00:52 +000024# 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#
E. Scott Danielse8a5b2c2019-04-22 17:04:10 +000030
31.EXPORT_ALL_VARIABLES:
32.ONESHELL:
E. Scott Daniels4c42c802019-05-13 15:03:36 +000033#.SHELLFLAGS = -e # hosed on some flavours so keep it off
E. Scott Daniels412d53d2019-05-20 20:00:52 +000034SHELL ?= /bin/ksh
E. Scott Danielse8a5b2c2019-04-22 17:04:10 +000035
E. Scott Danielsd9de79a2019-10-31 09:20:33 -040036ex_cflags = $(shell echo $$EX_CFLAGS )
37
E. Scott Danielse8a5b2c2019-04-22 17:04:10 +000038build_path ?= ../../.build
E. Scott Daniels17398002020-04-01 12:39:47 -040039header_path := $(shell find $(build_path) -name 'rmr.h' 2>/dev/null |head -1 | sed 's!/rmr/.*!!' )
E. Scott Danielse8a5b2c2019-04-22 17:04:10 +000040
E. Scott Danielsfc5c77b2020-02-21 13:24:29 -050041# use from environment if there so as to allow build to reference installed base
42C_INCLUDE_PATH ?= $(header_path)
43LD_LIBRARY_PATH ?= $(build_path):$(build_path)/lib
E. Scott Danielse8a5b2c2019-04-22 17:04:10 +000044LIBRARY_PATH = $(LD_LIBRARY_PATH)
45
46# These programmes are designed to test some basic application level functions
E. Scott Daniels412d53d2019-05-20 20:00:52 +000047# from the perspective of two, or more, communicating processes.
E. Scott Danielse8a5b2c2019-04-22 17:04:10 +000048
49
E. Scott Danielsec88d3c2019-11-13 09:40:22 -050050.PHONY: all all_si
E. Scott Danielsfc5c77b2020-02-21 13:24:29 -050051all: sender receiver caller mt_receiver v_sender ex_rts_receiver sender_si receiver_si
E. Scott Danielse8a5b2c2019-04-22 17:04:10 +000052
E. Scott Danielsec88d3c2019-11-13 09:40:22 -050053all_si: sender_si receiver_si
54
55
56# ------ nng based builds ------------------------------------------------------------
57
E. Scott Daniels02e8d492020-01-21 12:23:28 -050058%:%.c
E. Scott Danielse8a5b2c2019-04-22 17:04:10 +000059 gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm
60
E. Scott Daniels02e8d492020-01-21 12:23:28 -050061# special build as it reuses an existing source module
E. Scott Daniels412d53d2019-05-20 20:00:52 +000062mt_receiver: receiver.c
63 gcc -I $${C_INCLUDE_PATH:-.} -DMTC $< -g -o $@ -lrmr_nng -lnng -lpthread -lm
64
E. Scott Danielsec88d3c2019-11-13 09:40:22 -050065
66# ----- si test builds -------------------------------------------------------------
67
E. Scott Daniels02e8d492020-01-21 12:23:28 -050068%_si : %.c
E. Scott Danielsec88d3c2019-11-13 09:40:22 -050069 gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_si -lpthread -lm
70
E. Scott Daniels02e8d492020-01-21 12:23:28 -050071# explicit rule because there is no mt_recever.c
72mt_receiver_si: receiver.c
73 gcc -I $${C_INCLUDE_PATH:-.} -DMTC $< -g -o $@ -lrmr_si -lpthread -lm
E. Scott Danielsec88d3c2019-11-13 09:40:22 -050074
75
76# --------- housekeeping -----------------------------------------------------------
E. Scott Daniels412d53d2019-05-20 20:00:52 +000077
78# clean removes intermediates; nuke removes everything that can be built
79.PHONY: clean nuke
E. Scott Danielse8a5b2c2019-04-22 17:04:10 +000080clean:
E. Scott Daniels412d53d2019-05-20 20:00:52 +000081 rm -f *.o
82
83nuke: clean
E. Scott Daniels2596b232019-08-30 12:58:54 -040084 rm -f sender receiver caller mt_receiver