プログラムをコンパイルする次の 3 つのコマンドがあります。
- 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
これら3つのコマンドを考慮してmakefileを作成するにはどうすればよいですか?
Eclipse では、プログラムからの出力をシェルで受け取りますが、私の bash では、「Crypto」という bin ファイルをコンパイルして起動すると、bash シェルに出力がありません。なんで?