Commit d2332bba authored by thomasl's avatar thomasl

fix the fu.... inserting og @echo in parts before a make goal and list of...

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
parent ff299284
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment