Commit bef38020 authored by thomasl's avatar thomasl

replace = by := in shell commands to define svn version and date

therefore, the date will be the same for one given compilation and make will save a lot of forks



git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6199 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 30e22183
...@@ -9,8 +9,8 @@ export PWD ...@@ -9,8 +9,8 @@ export PWD
OBJS_DIR := $(PWD)/objs OBJS_DIR := $(PWD)/objs
SVN_REV = $(shell svnversion -n .) SVN_REV := $(shell svnversion -n .)
DATE_REV = $(shell date '+%F %T') DATE_REV := $(shell date '+%F %T')
NUM_CORES=$(shell cat /proc/cpuinfo | grep processor | wc -l) NUM_CORES=$(shell cat /proc/cpuinfo | grep processor | wc -l)
......
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