Newer
Older
Handbook / makefile-templates / answers.patterns
  1. ################################################################################
  2. #
  3. # Defines patterns for lists of documents to be generated for the
  4. # handbook. For example, only generate Tutorials 1, 2, 4, 6-9 and 11.
  5. # Patterns for different categories are kept in different files so
  6. # that rules can depend on them independently if necessary.
  7. #
  8. ################################################################################
  9.  
  10.  
  11. ################################################################################
  12. #
  13. # Which documents to generate answers for (where applicable).
  14. #
  15. TUT_ANSWERS_PATTERN:='tut\(0[1-9]\|1[012]\)'
  16.  
  17. LAB_ANSWERS_PATTERN:='lab\(0[1-9]\|1[012]\)'
  18.  
  19. OTHER_ANSWERS_PATTERNS:='intro' 'case_study'
  20.  
  21. ANSWERS_PATTERNS+=$(TUT_ANSWERS_PATTERN) $(LAB_ANSWERS_PATTERN) \
  22. $(OTHER_ANSWERS_PATTERNS)