forked from uds-se/fuzzingbook
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Chapters.makefile
43 lines (38 loc) · 942 Bytes
/
Chapters.makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Fuzzingbook Makefile
# This file defines the chapter files to be included
# Chapters to include in the book, in this order
PUBLIC_CHAPTERS = \
Intro_Testing.ipynb \
Fuzzer.ipynb \
Coverage.ipynb \
MutationFuzzer.ipynb \
Grammars.ipynb \
GrammarFuzzer.ipynb
# Chapters that are ready for release
READY_CHAPTERS = \
GrammarCoverageFuzzer.ipynb \
ConfigurationFuzzer.ipynb
# Chapters that still are work in progress
TODO_CHAPTERS = \
Parser.ipynb \
ProbabilisticGrammarFuzzer.ipynb \
Reducer.ipynb \
Carver.ipynb \
APIFuzzer.ipynb \
WebFuzzer.ipynb \
GrammarMiner.ipynb
# ConstraintGrammarFuzzer.ipynb
# GUIFuzzer.ipynb
# SearchBasedFuzzer.ipynb
# SymbolicFuzzer.ipynb
# Appendices for the book
APPENDICES = \
ExpectError.ipynb \
Timer.ipynb
# Additional notebooks for special pages (not to be included in distributions)
FRONTMATTER = \
index.ipynb
EXTRAS = \
Guide_for_Authors.ipynb \
Template.ipynb \
404.ipynb