diff options
author | Carl Dong <contact@carldong.me> | 2020-09-25 16:53:04 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2021-01-21 10:57:31 -0500 |
commit | 37fe73a092b08fe9d7ce636a1021429de6cda757 (patch) | |
tree | 702b8cdf6292e58ea6ec7af5278be4b8586863fa /src/Makefile.am | |
parent | 1f45e855095371be8f0898f7e4d8e68dcd650663 (diff) |
build: Add var printing target to src/Makefile.am
See 181989f6c9427fc266dbdcc84cb60ac03e67cdb2 for more info. I missed
this one last time.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 52bd4f1621..2616eb8638 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,6 +2,10 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. +# Pattern rule to print variables, e.g. make print-top_srcdir +print-%: + @echo $* = $($*) + DIST_SUBDIRS = secp256k1 univalue AM_LDFLAGS = $(LIBTOOL_LDFLAGS) $(HARDENED_LDFLAGS) $(GPROF_LDFLAGS) $(SANITIZER_LDFLAGS) |