Add Makefile debugging trick so that we can inspect runtime Makefile variables
This commit is contained in:
parent
4f75989634
commit
5b04cf7ab4
5
Makefile
5
Makefile
|
@ -329,3 +329,8 @@ endif
|
||||||
@rm -f *.grd Makefile.conf_last config_last.h
|
@rm -f *.grd Makefile.conf_last config_last.h
|
||||||
@(cd $(NETLIB_LAPACK_DIR)/TESTING && rm -f x* *.out testing_results.txt)
|
@(cd $(NETLIB_LAPACK_DIR)/TESTING && rm -f x* *.out testing_results.txt)
|
||||||
@echo Done.
|
@echo Done.
|
||||||
|
|
||||||
|
# Makefile debugging trick:
|
||||||
|
# call print-VARIABLE to see the runtime value of any variable
|
||||||
|
print-%:
|
||||||
|
@echo '$*=$($*)'
|
||||||
|
|
Loading…
Reference in New Issue