From c6bce2cea64e70ba7d64ed5793ad4488aadcc414 Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Mon, 9 Dec 2019 17:07:14 +0100 Subject: [PATCH] Consistent naming with 'make dist' --- release.sh => dist.sh | 2 +- tarball_ignore => dist_ignore | 4 ++-- makefile | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) rename release.sh => dist.sh (95%) rename tarball_ignore => dist_ignore (91%) diff --git a/release.sh b/dist.sh similarity index 95% rename from release.sh rename to dist.sh index 0b161ff..c301625 100755 --- a/release.sh +++ b/dist.sh @@ -20,7 +20,7 @@ doc/man2html.sh rm -rf $FOLDER # copy everything except ignored files to the -rsync -ad --exclude-from=tarball_ignore ./ $FOLDER +rsync -ad --exclude-from=dist_ignore ./ $FOLDER # Replace version markers by the actual version number (from tags) find $FOLDER -type f -exec sed -i "s/__git__/$VERSION/g" \{\} \; diff --git a/tarball_ignore b/dist_ignore similarity index 91% rename from tarball_ignore rename to dist_ignore index cc2a5c0..f76ed1b 100644 --- a/tarball_ignore +++ b/dist_ignore @@ -21,11 +21,11 @@ tests/formal-analysis/* tests/formal-analysis *.tar.gz -monocypher-* +monocypher-*/ lib* .git* release.sh -tarball_ignore +dist_ignore tests/gen* tests/externals/ed25519-donna* doc/man2html.sh diff --git a/makefile b/makefile index 01ee6c6..1c93763 100644 --- a/makefile +++ b/makefile @@ -18,7 +18,7 @@ endif check test \ speed speed-sodium speed-tweetnacl speed-hydrogen speed-c25519 \ clean uninstall \ - tarball + dist all : library install: library src/monocypher.h install-doc @@ -201,4 +201,4 @@ tests/vectors.h: exit 1 dist: tests/vectors.h - ./release.sh + ./dist.sh -- 2.47.3