From d2332bba0ddd04af2859565f6701b60e7d261be7 Mon Sep 17 00:00:00 2001 From: thomasl <thomasl@eurecom.fr> Date: Mon, 24 Nov 2014 11:30:01 +0000 Subject: [PATCH] fix the fu.... inserting og @echo in parts before a make goal and list of commans that start by a TAB that is not correct in makefiles: replaced by $(warning and $(info (the latest needs make version > 3.8, so ubuntu 12.04 is fine) git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6093 818b1a75-f10b-46b9-bf7c-635c3b92a50f --- targets/SIMU/USER/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/targets/SIMU/USER/Makefile b/targets/SIMU/USER/Makefile index 75a3e3710c..0d9836887b 100644 --- a/targets/SIMU/USER/Makefile +++ b/targets/SIMU/USER/Makefile @@ -113,13 +113,13 @@ endif ifdef CBA CFLAGS += -DRel10 CFLAGS += -DCBA -@echo "Rel10=1 CBA=1" +$(info "Rel10=1 CBA=1") else ifdef Rel10 CFLAGS += -DRel10 -@echo "Rel10=1" +$(info "Rel10=1") else # default is rel 8 -@echo "Rel8=1" +$(info "Rel8=1") CFLAGS += -DRel8 endif @@ -176,11 +176,11 @@ endif ifdef SECU ifeq ($(NETTLE_FOUND), 0) -@echo "Nettle library >= 2.5 is not installed on your system, nettle-dev lib needed, continuing with security disabled" +$(warning "Nettle library >= 2.5 is not installed on your system, nettle-dev lib needed, continuing with security disabled") SECU=0 else ifeq ($(OPENSSL_FOUND), 0) -@echo "openssl library is not installed on your system, openssl lib needed, continuing with security disabled" +$(warning "openssl library is not installed on your system, openssl lib needed, continuing with security disabled") SECU=0 else CFLAGS += -DENABLE_SECURITY -- GitLab