I have these 3 commands that compile my program:
- g++ -I/usr/include/cryptopp -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"AESBest.d" -MT"AESBest.d" -o "AESBest.o" "AESBest.cpp"
- g++ -I/usr/include/cryptopp -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"main.d" -MT"main.d" -o "main.o" "main.cpp"
- g++ -L/usr/include/cryptopp -o "Crypto" AESBest.o main.o -lcryptopp -lpthread
How is possible to create a makefile considering these 3 commands?
In Eclipse I receive output from the program in the shell, but in my bash, when I compile the bin file called "Crypto" and launch it, I have no output in my bash shell. Why?