-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
27 lines (18 loc) · 997 Bytes
/
makefile
File metadata and controls
27 lines (18 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.DEFAULT_GOAL := all
all: Hash Block AES Public Elliptical Depreciated
RSA:
g++ -std=c++11 -g3 -ggdb -O0 -Wall -Wextra -Wno-unused -o RSA.sh ./RSA/main.cpp -lcryptopp -I ./cryptopp
Elliptical:
g++ -std=c++11 -g3 -ggdb -O0 -Wall -Wextra -Wno-unused -o Elliptical.sh ./Elliptical\ Curve/elliptical.cpp -lcryptopp -I ./cryptopp
Depreciated:
g++ -std=c++11 -g3 -ggdb -O0 -Wall -Wextra -Wno-unused -o Depreciated.sh ./Depreciated/depreciated.cpp -lcryptopp -I ./cryptopp
Public:
g++ -std=c++11 -g3 -ggdb -O0 -Wall -Wextra -Wno-unused -o Public_Key.sh ./Public\ Key/public_key.cpp -lcryptopp -I ./cryptopp
AES:
g++ -std=c++11 -g3 -ggdb -O0 -Wall -Wextra -Wno-unused -o AES.sh ./AES/aes.cpp -lcryptopp -I ./cryptopp
Block:
g++ -std=c++11 -g3 -ggdb -O0 -Wall -Wextra -Wno-unused -o Block_Hash.sh ./Block\ Ciphers/block.cpp -lcryptopp -I ./cryptopp
Hash:
g++ -std=c++11 -g3 -ggdb -O0 -Wall -Wextra -Wno-unused -o Hash.sh ./Hash\ Functions/hash.cpp -lcryptopp -I ./cryptopp
clean:
-rm *.sh