aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-08-02 16:26:34 +0200
committerChristian Grothoff <christian@grothoff.org>2021-08-02 16:26:34 +0200
commitac110377b3a6ce93a1efebeaaa8e2e9755ecdd6d (patch)
treea055f8d3df20e4255d1fe9a8499781b849bac86f
parente9606fb28aed3859ae643acac568e0818ac5ed7b (diff)
downloadanastasis-ac110377b3a6ce93a1efebeaaa8e2e9755ecdd6d.tar.gz
anastasis-ac110377b3a6ce93a1efebeaaa8e2e9755ecdd6d.zip
-fix rules for 'make dist'
-rw-r--r--Makefile.am8
-rw-r--r--README6
-rw-r--r--contrib/Makefile.am1
-rw-r--r--doc/doxygen/Makefile.am5
-rw-r--r--doc/doxygen/taler-exchange.tag0
-rw-r--r--doc/doxygen/taler-merchant.tag0
-rw-r--r--src/cli/Makefile.am2
-rw-r--r--src/include/Makefile.am13
-rw-r--r--src/stasis/Makefile.am1
9 files changed, 23 insertions, 13 deletions
diff --git a/Makefile.am b/Makefile.am
index 9d2a8f8..8a6319e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -17,9 +17,7 @@ endif
17@DX_RULES@ 17@DX_RULES@
18 18
19ACLOCAL_AMFLAGS = -I m4 19ACLOCAL_AMFLAGS = -I m4
20EXTRA_DIST = config.rpath \ 20EXTRA_DIST = \
21 config.rpath \
21 AUTHORS \ 22 AUTHORS \
22 COPYING.AGPL \ 23 COPYING.AGPL
23 contrib/gnunet.tag \
24 contrib/uncrustify.cfg \
25 contrib/uncrustify_precommit
diff --git a/README b/README
index 7a09d7b..29b1a04 100644
--- a/README
+++ b/README
@@ -13,6 +13,12 @@ GNU Anastasis is a key backup and recovery tool from the GNU project.
13This package includes the backend run by the Anastasis providers as 13This package includes the backend run by the Anastasis providers as
14well as libraries for clients and a command-line interface. 14well as libraries for clients and a command-line interface.
15 15
16Installation instructions can be found in INSTALL and
17also in the handbook. Please note that you must run
18'make install' before you can run the testsuite using
19'make check'.
20
21
16Dependencies 22Dependencies
17============ 23============
18 24
diff --git a/contrib/Makefile.am b/contrib/Makefile.am
index 4304bcf..33ec99e 100644
--- a/contrib/Makefile.am
+++ b/contrib/Makefile.am
@@ -10,7 +10,6 @@ EXTRA_DIST = \
10 pogen.sh \ 10 pogen.sh \
11 gana.sh \ 11 gana.sh \
12 gana-update.sh \ 12 gana-update.sh \
13 gnunet.tag \
14 microhttpd.tag 13 microhttpd.tag
15 14
16pkgdata_DATA = \ 15pkgdata_DATA = \
diff --git a/doc/doxygen/Makefile.am b/doc/doxygen/Makefile.am
index 344d45c..3f2a7c1 100644
--- a/doc/doxygen/Makefile.am
+++ b/doc/doxygen/Makefile.am
@@ -15,4 +15,7 @@ clean:
15 rm -rf html 15 rm -rf html
16 16
17EXTRA_DIST = \ 17EXTRA_DIST = \
18 anastasis.doxy 18 anastasis.doxy \
19 gnunet.tag \
20 taler-exchange.tag \
21 taler-merchant.tag
diff --git a/doc/doxygen/taler-exchange.tag b/doc/doxygen/taler-exchange.tag
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/doc/doxygen/taler-exchange.tag
diff --git a/doc/doxygen/taler-merchant.tag b/doc/doxygen/taler-merchant.tag
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/doc/doxygen/taler-merchant.tag
diff --git a/src/cli/Makefile.am b/src/cli/Makefile.am
index 6b8bf23..1dbe5d8 100644
--- a/src/cli/Makefile.am
+++ b/src/cli/Makefile.am
@@ -38,6 +38,8 @@ EXTRA_DIST = \
38 resources/02-backup.json \ 38 resources/02-backup.json \
39 resources/03-backup.json \ 39 resources/03-backup.json \
40 resources/04-backup.json \ 40 resources/04-backup.json \
41 resources/05-backup.json \
42 resources/06-backup.json \
41 resources/00-recovery.json \ 43 resources/00-recovery.json \
42 resources/01-recovery.json \ 44 resources/01-recovery.json \
43 resources/02-recovery.json 45 resources/02-recovery.json
diff --git a/src/include/Makefile.am b/src/include/Makefile.am
index f9f6548..bd4d4e2 100644
--- a/src/include/Makefile.am
+++ b/src/include/Makefile.am
@@ -3,13 +3,14 @@ anastasisincludedir = $(includedir)/anastasis
3 3
4anastasisinclude_HEADERS = \ 4anastasisinclude_HEADERS = \
5 platform.h gettext.h \ 5 platform.h gettext.h \
6 anastasis_authorization_lib.h \
7 anastasis_authorization_plugin.h \
8 anastasis_crypto_lib.h \
9 anastasis_database_lib.h \
6 anastasis_database_plugin.h \ 10 anastasis_database_plugin.h \
7 anastasis_service.h \
8 anastasis_error_codes.h \ 11 anastasis_error_codes.h \
9 anastasis_database_lib.h \
10 anastasis_util_lib.h \
11 anastasis_crypto_lib.h \
12 anastasis_redux.h \ 12 anastasis_redux.h \
13 anastasis_authorization_plugin.h \ 13 anastasis_service.h \
14 anastasis_authorization_lib.h \ 14 anastasis_testing_lib.h \
15 anastasis_util_lib.h \
15 anastasis.h 16 anastasis.h
diff --git a/src/stasis/Makefile.am b/src/stasis/Makefile.am
index a1d6584..140f65e 100644
--- a/src/stasis/Makefile.am
+++ b/src/stasis/Makefile.am
@@ -92,4 +92,5 @@ TESTS = \
92 92
93EXTRA_DIST = \ 93EXTRA_DIST = \
94 test_anastasis_db_postgres.conf \ 94 test_anastasis_db_postgres.conf \
95 $(pkgcfg_DATA) \
95 $(sql_DATA) 96 $(sql_DATA)