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