Question: Given the following entry in a makefile: TextAdventure: TextAdv. cpp g++ -std=c++11 -Wall TextAdv. cpp -o TextAdventure Which of the following statements is false? O

Given the following entry in a makefile: TextAdventure: TextAdv. cpp g++ -std=c++11 -Wall TextAdv. cpp -o TextAdventure Which of the following statements is false? O Every time a user executes make TextAdventure on the command line, they will end up with an executable file called TextAdventure (assuming successful compilation) O The source code here is called TextAdventure. O The -Wall option is to ensure that the user receives warning messages from the compiler, not just error messages. O The C++ code associated with this dependency is in a file called TextAdv. cpp. O The compiler will adhere to the C++ standard version 11
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
