mirror of
https://bitbucket.org/Mattrixwv/cipherstream.git
synced 2025-12-06 18:33:58 -05:00
Updated debug builds to include Atbash
This commit is contained in:
6
makefile
6
makefile
@@ -31,7 +31,7 @@ Ciphers: main.cpp helperFunctions.hpp
|
||||
CiphersTest: main.cpp
|
||||
$(CXX) -O3 -std=c++11 -DTEST_VERSION -o Ciphers $< -L ./lib -lCaesar -lPlayfair -lVigenere -lAtbash
|
||||
|
||||
CiphersDBG: main.cpp SourceFiles/Caesar.cpp SourceFiles/Playfair.cpp
|
||||
CiphersDBG: main.cpp SourceFiles/Caesar.cpp SourceFiles/Playfair.cpp SourceFiles/Vigenere.cpp SourceFiles/Atbash.cpp
|
||||
$(CXX) -O3 -std=c++11 -g -DTEST_VERSION -o $@ $<
|
||||
|
||||
|
||||
@@ -55,8 +55,8 @@ Ciphers.exe: main.cpp helperFunctions.hpp
|
||||
CiphersTest.exe: main.cpp
|
||||
g++ -std=c++11 -O3 -DTEST_VERSION -o Ciphers.exe $< -L ./lib -llibCaesar -llibPlayfair -llibVigenere -llibAtbash
|
||||
|
||||
CiphersDBG.exe: main.cpp SourceFiles/Caesar.cpp SourceFiles/Playfair.cpp SourceFiles/Vigenere.cpp
|
||||
g++ -std=c++11 -O3 -g -DTEST_VERSION -o $@ main.cpp SourceFiles/Caesar.cpp SourceFiles/Playfair.cpp SourceFiles/Vigenere.cpp
|
||||
CiphersDBG.exe: main.cpp SourceFiles/Caesar.cpp SourceFiles/Playfair.cpp SourceFiles/Vigenere.cpp SourceFiles/Vigenere.cpp SourceFiles/Atbash.cpp
|
||||
g++ -std=c++11 -O3 -g -DTEST_VERSION -o $@ $<
|
||||
|
||||
|
||||
#Cleaning Shop
|
||||
|
||||
Reference in New Issue
Block a user