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
This commit is contained in:
parent
f544418d56
commit
85dc39483f
4
.gitignore
vendored
4
.gitignore
vendored
@ -20,8 +20,8 @@ doc/refman.pdf
|
|||||||
# *nix/windows test executables
|
# *nix/windows test executables
|
||||||
constants
|
constants
|
||||||
constants.exe
|
constants.exe
|
||||||
crypt
|
ltcrypt
|
||||||
crypt.exe
|
ltcrypt.exe
|
||||||
hashsum
|
hashsum
|
||||||
hashsum.exe
|
hashsum.exe
|
||||||
multi
|
multi
|
||||||
|
3
makefile
3
makefile
@ -365,8 +365,7 @@ clean:
|
|||||||
rm -f `find . -type f -name "*.dpi" | xargs`
|
rm -f `find . -type f -name "*.dpi" | xargs`
|
||||||
rm -rf `find . -type d -name "*.libs" | 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 crypt.aux crypt.dvi crypt.idx crypt.ilg crypt.ind crypt.log crypt.toc
|
||||||
rm -f $(TV) $(SMALL) $(CRYPT) $(HASH) $(TIMING) $(TEST)
|
rm -f $(TIMING) $(TEST) $(DEMOS)
|
||||||
rm -f $(SIZES) $(CONSTANTS)
|
|
||||||
rm -rf doc/doxygen
|
rm -rf doc/doxygen
|
||||||
rm -f `find . -type f -name "*.pdf" | grep -FL crypt.pdf | xargs`
|
rm -f `find . -type f -name "*.pdf" | grep -FL crypt.pdf | xargs`
|
||||||
rm -f *.txt
|
rm -f *.txt
|
||||||
|
@ -84,16 +84,10 @@ CFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\"
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
HASH=hashsum
|
|
||||||
CRYPT=encrypt
|
|
||||||
SMALL=small
|
|
||||||
TV=tv_gen
|
|
||||||
TIMING=timing
|
TIMING=timing
|
||||||
TEST=test
|
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
|
TIMINGS=demos/timing.o
|
||||||
TESTS=demos/test.o
|
TESTS=demos/test.o
|
||||||
|
Loading…
x
Reference in New Issue
Block a user