X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fapp_test%2FMakefile;h=fe4cd33607c91b77698113129e2730da8d9f10e8;hb=6b1712a0f1c2fb37eec04b3114ce1956800f74c9;hp=019f3e2fcb748f0ccbf47851cb16decb80ff19d6;hpb=d9de79acd9c205dc4f795e90a98331628ed6c85b;p=ric-plt%2Flib%2Frmr.git diff --git a/test/app_test/Makefile b/test/app_test/Makefile index 019f3e2..fe4cd33 100644 --- a/test/app_test/Makefile +++ b/test/app_test/Makefile @@ -1,7 +1,7 @@ # #================================================================================= -# Copyright (c) 2019 Nokia -# Copyright (c) 2018-2019 AT&T Intellectual Property. +# Copyright (c) 2019-2020 Nokia +# Copyright (c) 2018-2020 AT&T Intellectual Property. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,10 +17,10 @@ #================================================================================== # -# NOTE: this makefile assumes that RMr has been built using the directory .build +# NOTE: this makefile assumes that RMR has been built using the directory .build # at the top most repo directory (e.g. ../../.build). It can be changed # if you need to by adding "build_path=" to the make command line. -# To use this makefile to build on a system where RMr is already installed +# To use this makefile to build on a system where RMR is already installed # try: make build_path=/usr/local/lib # # By default we prefer the Korn shell (it's just better). If you really need @@ -46,34 +46,33 @@ LIBRARY_PATH = $(LD_LIBRARY_PATH) # from the perspective of two, or more, communicating processes. -.PHONY: all +.PHONY: all all_si all: sender receiver caller mt_receiver v_sender ex_rts_receiver -receiver: receiver.c +all_si: sender_si receiver_si + + +# ------ nng based builds ------------------------------------------------------------ + +%:%.c gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm +# special build as it reuses an existing source module mt_receiver: receiver.c gcc -I $${C_INCLUDE_PATH:-.} -DMTC $< -g -o $@ -lrmr_nng -lnng -lpthread -lm -lreceiver: lreceiver.c - gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm - -ex_rts_receiver: ex_rts_receiver.c - gcc $(ex_cflags) -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm -v_sender: v_sender.c - gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm +# ----- si test builds ------------------------------------------------------------- -sender: sender.c - gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm +%_si : %.c + gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_si -lpthread -lm -caller: caller.c - gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm +# explicit rule because there is no mt_recever.c +mt_receiver_si: receiver.c + gcc -I $${C_INCLUDE_PATH:-.} -DMTC $< -g -o $@ -lrmr_si -lpthread -lm -lcaller: lcaller.c - gcc -I $${C_INCLUDE_PATH:-.} $< -g -o $@ -lrmr_nng -lnng -lpthread -lm -lsender: lsender.c +# --------- housekeeping ----------------------------------------------------------- # clean removes intermediates; nuke removes everything that can be built .PHONY: clean nuke