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