Newer
Older
Handbook / makefile-templates / questions.patterns
  1. ################################################################################
  2. #
  3. # Defines patterns for lists of documents to be generated for the
  4. # "questions" version of the handbook. For example, only generate
  5. # Tutorials 1, 2, 4, 6-9 and 11. Patterns for different categories are
  6. # kept in different files so that rules can depend on them independently
  7. # if necessary.
  8. #
  9. ################################################################################
  10.  
  11.  
  12. ################################################################################
  13. #
  14. # You can be selective about which documents to include here by changing
  15. # the find patterns. The \input{}s in the master handbook.tex file will be
  16. # regenerated automatically.
  17. #
  18. TUT_QUESTIONS_PATTERN:='tut\(0[1-9]\|1[01]\)'
  19.  
  20. LAB_QUESTIONS_PATTERN:='lab\(0[1-9]\|1[012]\)'
  21.  
  22. OTHER_QUESTIONS_PATTERNS:='intro' 'case_study'
  23.  
  24. QUESTIONS_PATTERNS+=$(TUT_QUESTIONS_PATTERN) $(LAB_QUESTIONS_PATTERN) \
  25. $(OTHER_QUESTIONS_PATTERNS)