CPSC 480 Make

123456789101112131415161718192021
Across
  1. 3. Value of the single-hyphen option to set the C++ version to C++ 17
  2. 4. Name of a generated file, typically an executable or object file, or an action to carry out
  3. 5. A common target of a Makefile that runs the program tests
  4. 11. The automatic variable $^ is the names of ___ _______ with spaces between them
  5. 15. Name of the file with object code for the function main() of srccomplexity
  6. 16. The name of the file used by the make utility that contains rules for building a project
  7. 17. At .______ is used before targets that are pure actions and are not files
  8. 18. Typically the default target (first target) that will build all the executables
  9. 19. The Visual Studio command line tool version of make
  10. 20. The library name needed for proper linking of the program
  11. 21. Name of single-hyphen option to set the C++ version for the compiler
Down
  1. 1. Name of the file with object code for the function main() of the test program
  2. 2. A ______ is a file used as input to create the target
  3. 6. A traditional UNIX build automation tool
  4. 7. The automatic variable $< is the name of the ____ ______
  5. 8. Makefile consists of a set of these
  6. 9. The name of the program for calculating code complexity
  7. 10. Name of directory in /usr/include that contains the include files for libxml2
  8. 12. An action that make carries out
  9. 13. A common target of a Makefile
  10. 14. A common target of a Makefile that deletes any files the Make builds