Fixed broken names after renaming executable

This commit is contained in:
2018-05-13 22:18:36 -04:00
parent ac94c663b4
commit 0cfe5e40bd

View File

@@ -8,14 +8,14 @@ CIPHERS = Caesar Playfair Vigenere Atbash Morse Autokey
LIBFILES = $(patsubst %,SourceFiles/%.cpp,$(CIPHERS)) LIBFILES = $(patsubst %,SourceFiles/%.cpp,$(CIPHERS))
#For Linux #For Linux
allLinux: libsLinux Ciphers allLinux: libsLinux CipherStream
testLinux: libsLinux CiphersTest testLinux: libsLinux CiphersTest
debugLinux: CiphersDBG debugLinux: CiphersDBG
libsLinux: directory $(patsubst %, $(LIBDIR)/lib%.a,$(CIPHERS)) libsLinux: directory $(patsubst %, $(LIBDIR)/lib%.a,$(CIPHERS))
LINUXLIBS = $(patsubst %, -l%,$(CIPHERS)) LINUXLIBS = $(patsubst %, -l%,$(CIPHERS))
#For Windows #For Windows
allWindows: libsWindows Ciphers.exe allWindows: libsWindows CipherStream.exe
testWindows: libsWindows CiphersTest.exe testWindows: libsWindows CiphersTest.exe
debugWindows: CipherDBG.exe debugWindows: CipherDBG.exe
#Keeping the old one for now, until I can test it to make sure it works #Keeping the old one for now, until I can test it to make sure it works