-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
50 lines (39 loc) · 743 Bytes
/
Makefile
File metadata and controls
50 lines (39 loc) · 743 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
ALL: pswd \
moveFile \
convertImage \
moveImage \
makeVisualCrypt \
moveShares
pswd:
cd createPswd/ && \
make && \
./createPswd p5wd.txt 8
moveFile:
mv ./createPswd/*.txt ./convertToImage/usePython
convertImage:
cd convertToImage/usePython && \
cat *.txt && \
python3 convertPython.py *.txt
moveImage:
mv ./convertToImage/usePython/*.bmp ./visualCrypt/
makeVisualCrypt:
cd visualCrypt && \
./createVisualCrypt.py *.bmp && \
rm -f *.bmp
moveShares:
mv ./visualCrypt/*.png ./
clean: cleanOne \
cleanTwo \
cleanThree \
cleanFour
cleanOne:
cd createPswd/ && \
make clean
cleanTwo:
cd convertToImage/ && \
make clean && \
rm -f *.txt
cleanThree:
rm -f ./visualCrypt/*.png
cleanFour:
rm -f *.png