Skip to content

Commit

Permalink
examples: rename example_musig to musig_example for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasnick committed Mar 30, 2022
1 parent 8298c0c commit 2adb741
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ src/stamp-h1
libsecp256k1.pc
contrib/gh-pr-create.sh

example_musig
musig_example
14 changes: 7 additions & 7 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2adb741

Please sign in to comment.