CPSC 480 Make

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