E. Scott Daniels | d9de79a | 2019-10-31 09:20:33 -0400 | [diff] [blame] | 1 | # |
| 2 | #================================================================================= |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 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 | |
E. Scott Daniels | ec88d3c | 2019-11-13 09:40:22 -0500 | [diff] [blame] | 20 | # NOTE: this makefile assumes that RMR has been built using the directory .build |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 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. |
E. Scott Daniels | ec88d3c | 2019-11-13 09:40:22 -0500 | [diff] [blame] | 23 | # To use this makefile to build on a system where RMR is already installed |
E. Scott Daniels | 412d53d | 2019-05-20 20:00:52 +0000 | [diff] [blame] | 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 | # |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 30 | |
| 31 | .EXPORT_ALL_VARIABLES: |
| 32 | .ONESHELL: |
E. Scott Daniels | 4c42c80 | 2019-05-13 15:03:36 +0000 | [diff] [blame] | 33 | #.SHELLFLAGS = -e # hosed on some flavours so keep it off |
E. Scott Daniels | 412d53d | 2019-05-20 20:00:52 +0000 | [diff] [blame] | 34 | SHELL ?= /bin/ksh |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 35 | |
E. Scott Daniels | d9de79a | 2019-10-31 09:20:33 -0400 | [diff] [blame] | 36 | ex_cflags = $(shell echo $$EX_CFLAGS ) |
| 37 | |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 38 | build_path ?= ../../.build |
E. Scott Daniels | 412d53d | 2019-05-20 20:00:52 +0000 | [diff] [blame] | 39 | header_path := $(shell find $(build_path) -name 'rmr.h' |head -1 | sed 's!/rmr/.*!!' ) |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 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 |
E. Scott Daniels | 412d53d | 2019-05-20 20:00:52 +0000 | [diff] [blame] | 46 | # from the perspective of two, or more, communicating processes. |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 47 | |
| 48 | |
E. Scott Daniels | ec88d3c | 2019-11-13 09:40:22 -0500 | [diff] [blame] | 49 | .PHONY: all all_si |
E. Scott Daniels | d9de79a | 2019-10-31 09:20:33 -0400 | [diff] [blame] | 50 | all: sender receiver caller mt_receiver v_sender ex_rts_receiver |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 51 | |
E. Scott Daniels | ec88d3c | 2019-11-13 09:40:22 -0500 | [diff] [blame] | 52 | all_si: sender_si receiver_si |
| 53 | |
| 54 | |
| 55 | # ------ nng based builds ------------------------------------------------------------ |
| 56 | |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 57 | receiver: receiver.c |
| 58 | gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm |
| 59 | |
E. Scott Daniels | 412d53d | 2019-05-20 20:00:52 +0000 | [diff] [blame] | 60 | mt_receiver: receiver.c |
| 61 | gcc -I $${C_INCLUDE_PATH:-.} -DMTC $< -g -o $@ -lrmr_nng -lnng -lpthread -lm |
| 62 | |
E. Scott Daniels | 3925774 | 2019-06-06 16:44:33 +0000 | [diff] [blame] | 63 | lreceiver: lreceiver.c |
| 64 | gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm |
| 65 | |
E. Scott Daniels | d9de79a | 2019-10-31 09:20:33 -0400 | [diff] [blame] | 66 | ex_rts_receiver: ex_rts_receiver.c |
| 67 | gcc $(ex_cflags) -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm |
| 68 | |
| 69 | v_sender: v_sender.c |
| 70 | gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm |
| 71 | |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 72 | sender: sender.c |
| 73 | gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm |
| 74 | |
E. Scott Daniels | 412d53d | 2019-05-20 20:00:52 +0000 | [diff] [blame] | 75 | caller: caller.c |
| 76 | gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 77 | |
E. Scott Daniels | 3925774 | 2019-06-06 16:44:33 +0000 | [diff] [blame] | 78 | lcaller: lcaller.c |
| 79 | gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm |
| 80 | |
E. Scott Daniels | cac756c | 2019-07-29 16:02:11 -0400 | [diff] [blame] | 81 | lsender: lsender.c |
E. Scott Daniels | ec88d3c | 2019-11-13 09:40:22 -0500 | [diff] [blame] | 82 | gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm |
| 83 | |
| 84 | |
| 85 | |
| 86 | # ----- si test builds ------------------------------------------------------------- |
| 87 | |
| 88 | sender_si: sender.c |
| 89 | gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_si -lpthread -lm |
| 90 | |
| 91 | receiver_si: receiver.c |
| 92 | gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_si -lpthread -lm |
| 93 | |
| 94 | |
| 95 | # --------- housekeeping ----------------------------------------------------------- |
E. Scott Daniels | 412d53d | 2019-05-20 20:00:52 +0000 | [diff] [blame] | 96 | |
| 97 | # clean removes intermediates; nuke removes everything that can be built |
| 98 | .PHONY: clean nuke |
E. Scott Daniels | e8a5b2c | 2019-04-22 17:04:10 +0000 | [diff] [blame] | 99 | clean: |
E. Scott Daniels | 412d53d | 2019-05-20 20:00:52 +0000 | [diff] [blame] | 100 | rm -f *.o |
| 101 | |
| 102 | nuke: clean |
E. Scott Daniels | 2596b23 | 2019-08-30 12:58:54 -0400 | [diff] [blame] | 103 | rm -f sender receiver caller mt_receiver |