diff options
author | Martin Schanzenbach <schanzen@gnunet.org> | 2023-01-05 17:26:29 +0900 |
---|---|---|
committer | Martin Schanzenbach <schanzen@gnunet.org> | 2023-01-05 17:26:29 +0900 |
commit | 4184e030e69107238ad35d99b402e1a688275f7c (patch) | |
tree | 1a0a2e58b84caa1395c03dcf2397a3b343a63423 | |
parent | 25d4c3a134b1c2e5681a7692e192711f33a97369 (diff) |
BUILD: Move undocumented programs and scritps to libexec. Issue #7543
Those binaries should not really be called directly and are poorly
documented (no man pages).
-rw-r--r-- | src/consensus/Makefile.am | 6 | ||||
-rw-r--r-- | src/revocation/Makefile.am | 8 | ||||
-rw-r--r-- | src/secretsharing/Makefile.am | 6 | ||||
-rw-r--r-- | src/set/Makefile.am | 6 | ||||
-rw-r--r-- | src/seti/Makefile.am | 6 | ||||
-rw-r--r-- | src/setu/Makefile.am | 6 |
6 files changed, 13 insertions, 25 deletions
diff --git a/src/consensus/Makefile.am b/src/consensus/Makefile.am index d7b23e7c6..c7480a802 100644 --- a/src/consensus/Makefile.am +++ b/src/consensus/Makefile.am @@ -16,7 +16,8 @@ endif libexec_PROGRAMS = \ - gnunet-service-consensus + gnunet-service-consensus \ + gnunet-consensus-profiler if ENABLE_MALICIOUS libexec_PROGRAMS += \ @@ -89,9 +90,6 @@ libgnunet_plugin_block_consensus_la_LDFLAGS = \ -bin_PROGRAMS = \ - gnunet-consensus-profiler - check_PROGRAMS = \ test_consensus_api diff --git a/src/revocation/Makefile.am b/src/revocation/Makefile.am index d0c58584e..a8e84e877 100644 --- a/src/revocation/Makefile.am +++ b/src/revocation/Makefile.am @@ -16,9 +16,7 @@ pkgcfg_DATA = \ revocation.conf bin_PROGRAMS = \ - gnunet-revocation \ - gnunet-revocation-tvg - + gnunet-revocation plugin_LTLIBRARIES = \ libgnunet_plugin_block_revocation.la @@ -67,8 +65,8 @@ libgnunetrevocation_la_LDFLAGS = \ -version-info 0:0:0 libexec_PROGRAMS = \ - gnunet-service-revocation - + gnunet-service-revocation \ + gnunet-revocation-tvg gnunet_service_revocation_SOURCES = \ gnunet-service-revocation.c diff --git a/src/secretsharing/Makefile.am b/src/secretsharing/Makefile.am index 13dd0bd8d..0560417e9 100644 --- a/src/secretsharing/Makefile.am +++ b/src/secretsharing/Makefile.am @@ -14,7 +14,8 @@ endif libexec_PROGRAMS = \ - gnunet-service-secretsharing + gnunet-service-secretsharing \ + gnunet-secretsharing-profiler lib_LTLIBRARIES = \ libgnunetsecretsharing.la @@ -51,9 +52,6 @@ libgnunetsecretsharing_la_LIBADD = \ libgnunetsecretsharing_la_LDFLAGS = \ $(GN_LIB_LDFLAGS) -bin_PROGRAMS = \ - gnunet-secretsharing-profiler - check_PROGRAMS = \ test_secretsharing_api diff --git a/src/set/Makefile.am b/src/set/Makefile.am index 837d42ff5..36ec2b298 100644 --- a/src/set/Makefile.am +++ b/src/set/Makefile.am @@ -14,14 +14,12 @@ if USE_COVERAGE AM_CFLAGS = -fprofile-arcs -ftest-coverage endif -bin_PROGRAMS = \ - gnunet-set-profiler - noinst_PROGRAMS = \ gnunet-set-ibf-profiler libexec_PROGRAMS = \ - gnunet-service-set + gnunet-service-set \ + gnunet-set-profiler lib_LTLIBRARIES = \ libgnunetset.la diff --git a/src/seti/Makefile.am b/src/seti/Makefile.am index 8441c5060..038f67027 100644 --- a/src/seti/Makefile.am +++ b/src/seti/Makefile.am @@ -14,11 +14,9 @@ if USE_COVERAGE AM_CFLAGS = -fprofile-arcs -ftest-coverage endif -bin_PROGRAMS = \ - gnunet-seti-profiler - libexec_PROGRAMS = \ - gnunet-service-seti + gnunet-service-seti \ + gnunet-seti-profiler lib_LTLIBRARIES = \ libgnunetseti.la diff --git a/src/setu/Makefile.am b/src/setu/Makefile.am index 897bf3f86..fd49c7752 100644 --- a/src/setu/Makefile.am +++ b/src/setu/Makefile.am @@ -14,14 +14,12 @@ if USE_COVERAGE AM_CFLAGS = -fprofile-arcs -ftest-coverage endif -bin_PROGRAMS = \ - gnunet-setu-profiler - noinst_PROGRAMS = \ gnunet-setu-ibf-profiler libexec_PROGRAMS = \ - gnunet-service-setu + gnunet-service-setu \ + gnunet-setu-profiler lib_LTLIBRARIES = \ libgnunetsetu.la |