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