GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
1
Releases
Issues
1
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
nigel.stanger
/
Handbook
Browse code
- Added case_study and introduction items to default patterns.
master
1 parent
f9222f5
commit
e0bb75a34f076c036dda8842315ad6489789a717
nstanger
authored
on 16 Feb 2006
Patch
Showing
3 changed files
makefile-templates/answers.patterns
makefile-templates/install.patterns
makefile-templates/questions.patterns
Ignore Space
Show notes
View
makefile-templates/answers.patterns
################################################################################ # # File: $Id$ # # Defines patterns for lists of documents to be generated for the # handbook. For example, only generate Tutorials 1, 2, 4, 6-9 and 11. # Patterns for different categories are kept in different files so # that rules can depend on them independently if necessary. # ################################################################################ ################################################################################ # # Which documents to generate answers for (where applicable). # TUT_ANSWERS_PATTERN:='tut\(0[1-9]\|1[012]\)' LAB_ANSWERS_PATTERN:='lab\(0[1-9]\|1[012]\)' OTHER_ANSWERS_PATTERNS:='course_outline' 'intro' 'case_study' ANSWERS_PATTERNS+=$(TUT_ANSWERS_PATTERN) $(LAB_ANSWERS_PATTERN) \ $(OTHER_ANSWERS_PATTERNS)
################################################################################ # # File: $Id$ # # Defines patterns for lists of documents to be generated for the # handbook. For example, only generate Tutorials 1, 2, 4, 6-9 and 11. # Patterns for different categories are kept in different files so # that rules can depend on them independently if necessary. # ################################################################################ ################################################################################ # # Which documents to generate answers for (where applicable). # TUT_ANSWERS_PATTERN:='tut\(0[1-9]\|1[012]\)' LAB_ANSWERS_PATTERN:='lab\(0[1-9]\|1[012]\)' OTHER_ANSWERS_PATTERNS:='course_outline' ANSWERS_PATTERNS+=$(TUT_ANSWERS_PATTERN) $(LAB_ANSWERS_PATTERN) \ $(OTHER_ANSWERS_PATTERNS)
Ignore Space
Show notes
View
makefile-templates/install.patterns
################################################################################ # # File: $Id$ # # Defines patterns for lists of documents to be installed on the # web server. For example, only install Tutorials 1, 2, 4, 6-9 and 11. # Patterns for different categories are kept in different files so # that rules can depend on them independently if necessary. # ################################################################################ ################################################################################ # # Which documents to install on the web server. # TUT_QUESTIONS_INSTALL_PATTERN:='tut\(0[1-9]\|1[01]\)' TUT_ANSWERS_INSTALL_PATTERN:='tut\(0[1-9]\|1[01]\)' LAB_QUESTIONS_INSTALL_PATTERN:='lab\(0[1-9]\|1[012]\)' LAB_ANSWERS_INSTALL_PATTERN:='lab\(0[1-9]\|1[012]\)' OTHER_QUESTIONS_INSTALL_PATTERNS:='course_outline' 'intro' 'case_study' OTHER_ANSWERS_INSTALL_PATTERNS:='course_outline' 'intro' 'case_study' QUESTION_INSTALL_PATTERNS+=$(TUT_QUESTIONS_INSTALL_PATTERN) \ $(LAB_QUESTIONS_INSTALL_PATTERN) $(OTHER_QUESTIONS_INSTALL_PATTERNS) ANSWER_INSTALL_PATTERNS+=$(TUT_ANSWERS_INSTALL_PATTERN) \ $(LAB_ANSWERS_INSTALL_PATTERN) $(OTHER_ANSWERS_INSTALL_PATTERNS)
################################################################################ # # File: $Id$ # # Defines patterns for lists of documents to be installed on the # web server. For example, only install Tutorials 1, 2, 4, 6-9 and 11. # Patterns for different categories are kept in different files so # that rules can depend on them independently if necessary. # ################################################################################ ################################################################################ # # Which documents to install on the web server. # TUT_QUESTIONS_INSTALL_PATTERN:='tut\(0[1-9]\|1[01]\)' TUT_ANSWERS_INSTALL_PATTERN:='tut\(0[1-9]\|1[01]\)' LAB_QUESTIONS_INSTALL_PATTERN:='lab\(0[1-9]\|1[012]\)' LAB_ANSWERS_INSTALL_PATTERN:='lab\(0[1-9]\|1[012]\)' OTHER_QUESTIONS_INSTALL_PATTERNS:='course_outline' OTHER_ANSWERS_INSTALL_PATTERNS:='course_outline' QUESTION_INSTALL_PATTERNS+=$(TUT_QUESTIONS_INSTALL_PATTERN) \ $(LAB_QUESTIONS_INSTALL_PATTERN) $(OTHER_QUESTIONS_INSTALL_PATTERNS) ANSWER_INSTALL_PATTERNS+=$(TUT_ANSWERS_INSTALL_PATTERN) \ $(LAB_ANSWERS_INSTALL_PATTERN) $(OTHER_ANSWERS_INSTALL_PATTERNS)
Ignore Space
Show notes
View
makefile-templates/questions.patterns
################################################################################ # # File: $Id$ # # Defines patterns for lists of documents to be generated for the # "questions" version of the handbook. For example, only generate # Tutorials 1, 2, 4, 6-9 and 11. Patterns for different categories are # kept in different files so that rules can depend on them independently # if necessary. # ################################################################################ ################################################################################ # # You can be selective about which documents to include here by changing # the find patterns. The \input{}s in the master handbook.tex file will be # regenerated automatically. # TUT_QUESTIONS_PATTERN:='tut\(0[1-9]\|1[01]\)' LAB_QUESTIONS_PATTERN:='lab\(0[1-9]\|1[012]\)' OTHER_QUESTIONS_PATTERNS:='course_outline' 'intro' 'case_study' QUESTIONS_PATTERNS+=$(TUT_QUESTIONS_PATTERN) $(LAB_QUESTIONS_PATTERN) \ $(OTHER_QUESTIONS_PATTERNS)
################################################################################ # # File: $Id$ # # Defines patterns for lists of documents to be generated for the # "questions" version of the handbook. For example, only generate # Tutorials 1, 2, 4, 6-9 and 11. Patterns for different categories are # kept in different files so that rules can depend on them independently # if necessary. # ################################################################################ ################################################################################ # # You can be selective about which documents to include here by changing # the find patterns. The \input{}s in the master handbook.tex file will be # regenerated automatically. # TUT_QUESTIONS_PATTERN:='tut\(0[1-9]\|1[01]\)' LAB_QUESTIONS_PATTERN:='lab\(0[1-9]\|1[012]\)' OTHER_QUESTIONS_PATTERNS:='course_outline' QUESTIONS_PATTERNS+=$(TUT_QUESTIONS_PATTERN) $(LAB_QUESTIONS_PATTERN) \ $(OTHER_QUESTIONS_PATTERNS)
Show line notes below