From 2adb741c45ecc4ef7180009c42f961e4aee4bf5c Mon Sep 17 00:00:00 2001 From: Jonas Nick Date: Wed, 30 Mar 2022 15:06:46 +0000 Subject: [PATCH] examples: rename example_musig to musig_example for consistency --- .gitignore | 2 +- Makefile.am | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index c32a5ae76..1ec887ded 100644 --- a/.gitignore +++ b/.gitignore @@ -66,4 +66,4 @@ src/stamp-h1 libsecp256k1.pc contrib/gh-pr-create.sh -example_musig \ No newline at end of file +musig_example \ No newline at end of file diff --git a/Makefile.am b/Makefile.am index 61e272e51..0b50f7a8b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -175,15 +175,15 @@ endif TESTS += schnorr_example endif if ENABLE_MODULE_MUSIG -noinst_PROGRAMS += example_musig -example_musig_SOURCES = examples/musig.c -example_musig_CPPFLAGS = -I$(top_srcdir)/include -example_musig_LDADD = libsecp256k1.la -example_musig_LDFLAGS = -static +noinst_PROGRAMS += musig_example +musig_example_SOURCES = examples/musig.c +musig_example_CPPFLAGS = -I$(top_srcdir)/include +musig_example_LDADD = libsecp256k1.la +musig_example_LDFLAGS = -static if BUILD_WINDOWS -example_musig_LDFLAGS += -lbcrypt +musig_example_LDFLAGS += -lbcrypt endif -TESTS += example_musig +TESTS += musig_example endif endif