Browse Source

Add Makefile debugging trick so that we can inspect runtime Makefile variables

tags/v0.2.20^2
Elliot Saba 8 years ago
parent
commit
5b04cf7ab4
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      Makefile

+ 5
- 0
Makefile View File

@@ -329,3 +329,8 @@ endif
@rm -f *.grd Makefile.conf_last config_last.h
@(cd $(NETLIB_LAPACK_DIR)/TESTING && rm -f x* *.out testing_results.txt)
@echo Done.

# Makefile debugging trick:
# call print-VARIABLE to see the runtime value of any variable
print-%:
@echo '$*=$($*)'

Loading…
Cancel
Save