From 85dc39483f27ccfb96508099fcf0a6d5ed369c84 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Wed, 26 Apr 2017 01:00:50 +0200 Subject: [PATCH] rename crypt to ltcrypt a binary called crypt already exists and creates a name-clash as we won't implement the entire CLI even if this tool implements similar functionality --- .gitignore | 4 ++-- demos/{crypt.c => ltcrypt.c} | 0 makefile | 3 +-- makefile.include | 8 +------- 4 files changed, 4 insertions(+), 11 deletions(-) rename demos/{crypt.c => ltcrypt.c} (100%) diff --git a/.gitignore b/.gitignore index 353266c..acba152 100644 --- a/.gitignore +++ b/.gitignore @@ -20,8 +20,8 @@ doc/refman.pdf # *nix/windows test executables constants constants.exe -crypt -crypt.exe +ltcrypt +ltcrypt.exe hashsum hashsum.exe multi diff --git a/demos/crypt.c b/demos/ltcrypt.c similarity index 100% rename from demos/crypt.c rename to demos/ltcrypt.c diff --git a/makefile b/makefile index 2206e00..aa5e933 100644 --- a/makefile +++ b/makefile @@ -365,8 +365,7 @@ clean: rm -f `find . -type f -name "*.dpi" | xargs` rm -rf `find . -type d -name "*.libs" | xargs` rm -f crypt.aux crypt.dvi crypt.idx crypt.ilg crypt.ind crypt.log crypt.toc - rm -f $(TV) $(SMALL) $(CRYPT) $(HASH) $(TIMING) $(TEST) - rm -f $(SIZES) $(CONSTANTS) + rm -f $(TIMING) $(TEST) $(DEMOS) rm -rf doc/doxygen rm -f `find . -type f -name "*.pdf" | grep -FL crypt.pdf | xargs` rm -f *.txt diff --git a/makefile.include b/makefile.include index d1103ac..e426156 100644 --- a/makefile.include +++ b/makefile.include @@ -84,16 +84,10 @@ CFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\" endif -HASH=hashsum -CRYPT=encrypt -SMALL=small -TV=tv_gen TIMING=timing TEST=test -SIZES=sizes -CONSTANTS=constants -DEMOS=hashsum crypt small tv_gen sizes constants +DEMOS=hashsum ltcrypt small tv_gen sizes constants TIMINGS=demos/timing.o TESTS=demos/test.o