OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 | 2 |
3 # Copyright 2015 The Crashpad Authors. All rights reserved. | 3 # Copyright 2015 The Crashpad Authors. All rights reserved. |
4 # | 4 # |
5 # Licensed under the Apache License, Version 2.0 (the "License"); | 5 # Licensed under the Apache License, Version 2.0 (the "License"); |
6 # you may not use this file except in compliance with the License. | 6 # you may not use this file except in compliance with the License. |
7 # You may obtain a copy of the License at | 7 # You may obtain a copy of the License at |
8 # | 8 # |
9 # http://www.apache.org/licenses/LICENSE-2.0 | 9 # http://www.apache.org/licenses/LICENSE-2.0 |
10 # | 10 # |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 # For PDF output, use an a2x command like the one above, with these options: | 115 # For PDF output, use an a2x command like the one above, with these options: |
116 # --format pdf --fop --destination-dir "${output_dir}/${type}/pdf" | 116 # --format pdf --fop --destination-dir "${output_dir}/${type}/pdf" |
117 } | 117 } |
118 | 118 |
119 for input in \ | 119 for input in \ |
120 doc/*.ad; do | 120 doc/*.ad; do |
121 generate "${input}" "doc" | 121 generate "${input}" "doc" |
122 done | 122 done |
123 | 123 |
124 for input in \ | 124 for input in \ |
125 handler/mac/crashpad_handler.ad \ | 125 handler/crashpad_handler.ad \ |
126 tools/*.ad \ | 126 tools/*.ad \ |
127 tools/mac/*.ad; do | 127 tools/mac/*.ad; do |
128 generate "${input}" "man" | 128 generate "${input}" "man" |
129 done | 129 done |
OLD | NEW |