diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-08-26 10:11:46 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-08-26 10:11:46 +0200 |
commit | e70480655e8d1326bc4828ccada20e7669fa719f (patch) | |
tree | 2260439106d6ac4394af07831da3eaa48f698262 | |
parent | 672b2c6db1feb252e3fe907f1e24ae273156638a (diff) | |
download | yosys-e70480655e8d1326bc4828ccada20e7669fa719f.tar.gz yosys-e70480655e8d1326bc4828ccada20e7669fa719f.tar.bz2 yosys-e70480655e8d1326bc4828ccada20e7669fa719f.zip |
Print Makefile.conf as make info message
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -58,7 +58,10 @@ OBJS = kernel/version_$(GIT_REV).o ABCREV = 4d547a5e065b ABCPULL = 1 --include Makefile.conf +ifneq ($(wildcard Makefile.conf),) +$(info $(shell sed 's,^,[Makefile.conf] ,' < Makefile.conf)) +include Makefile.conf +endif ifeq ($(CONFIG),clang) CXX = clang |