tnef 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. data/ext/tnef/AUTHORS +7 -0
  2. data/ext/tnef/BUGS.in +5 -0
  3. data/ext/tnef/COPYING +340 -0
  4. data/ext/tnef/ChangeLog +1550 -0
  5. data/ext/tnef/INSTALL +234 -0
  6. data/ext/tnef/Makefile.am +7 -0
  7. data/ext/tnef/Makefile.in +699 -0
  8. data/ext/tnef/NEWS +177 -0
  9. data/ext/tnef/README +39 -0
  10. data/ext/tnef/THANKS +1 -0
  11. data/ext/tnef/TODO +7 -0
  12. data/ext/tnef/acinclude.m4 +47 -0
  13. data/ext/tnef/aclocal.m4 +1012 -0
  14. data/ext/tnef/configure +6815 -0
  15. data/ext/tnef/configure.in +67 -0
  16. data/ext/tnef/depcomp +584 -0
  17. data/ext/tnef/doc/FAQ +25 -0
  18. data/ext/tnef/doc/Makefile.am +6 -0
  19. data/ext/tnef/doc/Makefile.in +623 -0
  20. data/ext/tnef/doc/file-format.tex +139 -0
  21. data/ext/tnef/doc/tnef.1.in +183 -0
  22. data/ext/tnef/doc/www/Makefile.am +14 -0
  23. data/ext/tnef/doc/www/Makefile.in +542 -0
  24. data/ext/tnef/doc/www/cgi-bin/Makefile.am +14 -0
  25. data/ext/tnef/doc/www/cgi-bin/Makefile.in +340 -0
  26. data/ext/tnef/doc/www/htdocs/Makefile.am +14 -0
  27. data/ext/tnef/doc/www/htdocs/Makefile.in +340 -0
  28. data/ext/tnef/extconf.rb +3 -0
  29. data/ext/tnef/install-sh +507 -0
  30. data/ext/tnef/missing +367 -0
  31. data/ext/tnef/mkinstalldirs +161 -0
  32. data/ext/tnef/src/Makefile.am +48 -0
  33. data/ext/tnef/src/Makefile.in +700 -0
  34. data/ext/tnef/src/alloc.c +107 -0
  35. data/ext/tnef/src/alloc.h +54 -0
  36. data/ext/tnef/src/attr.c +270 -0
  37. data/ext/tnef/src/attr.h +74 -0
  38. data/ext/tnef/src/common.h +101 -0
  39. data/ext/tnef/src/config.h.in +111 -0
  40. data/ext/tnef/src/date.c +66 -0
  41. data/ext/tnef/src/date.h +43 -0
  42. data/ext/tnef/src/debug.c +45 -0
  43. data/ext/tnef/src/debug.h +32 -0
  44. data/ext/tnef/src/file.c +259 -0
  45. data/ext/tnef/src/file.h +48 -0
  46. data/ext/tnef/src/main.c +386 -0
  47. data/ext/tnef/src/mapi-names.data +430 -0
  48. data/ext/tnef/src/mapi-types.data +19 -0
  49. data/ext/tnef/src/mapi_attr.c +419 -0
  50. data/ext/tnef/src/mapi_attr.h +78 -0
  51. data/ext/tnef/src/mkdata.awk +100 -0
  52. data/ext/tnef/src/options.c +32 -0
  53. data/ext/tnef/src/options.h +67 -0
  54. data/ext/tnef/src/path.c +397 -0
  55. data/ext/tnef/src/path.h +34 -0
  56. data/ext/tnef/src/replace/Makefile.am +8 -0
  57. data/ext/tnef/src/replace/Makefile.in +435 -0
  58. data/ext/tnef/src/replace/basename.c +45 -0
  59. data/ext/tnef/src/replace/dummy.c +7 -0
  60. data/ext/tnef/src/replace/getopt_long.c +940 -0
  61. data/ext/tnef/src/replace/getopt_long.h +141 -0
  62. data/ext/tnef/src/replace/malloc.c +41 -0
  63. data/ext/tnef/src/replace/strdup.c +51 -0
  64. data/ext/tnef/src/rtf.c +362 -0
  65. data/ext/tnef/src/rtf.h +36 -0
  66. data/ext/tnef/src/tnef-names.data +34 -0
  67. data/ext/tnef/src/tnef-types.data +12 -0
  68. data/ext/tnef/src/tnef.c +396 -0
  69. data/ext/tnef/src/tnef.h +45 -0
  70. data/ext/tnef/src/util.c +112 -0
  71. data/ext/tnef/src/util.h +42 -0
  72. data/ext/tnef/src/write.c +136 -0
  73. data/ext/tnef/src/write.h +25 -0
  74. data/ext/tnef/src/xstrdup.c +41 -0
  75. data/ext/tnef/tests/Makefile.am +4 -0
  76. data/ext/tnef/tests/Makefile.in +530 -0
  77. data/ext/tnef/tests/cmdline/AUTHORS +8 -0
  78. data/ext/tnef/tests/cmdline/AUTHORS.baseline +8 -0
  79. data/ext/tnef/tests/cmdline/Makefile.am +33 -0
  80. data/ext/tnef/tests/cmdline/Makefile.in +455 -0
  81. data/ext/tnef/tests/cmdline/basic.baseline +4 -0
  82. data/ext/tnef/tests/cmdline/basic.test +39 -0
  83. data/ext/tnef/tests/cmdline/body-test.html.baseline +95 -0
  84. data/ext/tnef/tests/cmdline/body.baseline +929 -0
  85. data/ext/tnef/tests/cmdline/body.test +55 -0
  86. data/ext/tnef/tests/cmdline/debug.baseline +155 -0
  87. data/ext/tnef/tests/cmdline/debug.test +14 -0
  88. data/ext/tnef/tests/cmdline/directory.baseline +3 -0
  89. data/ext/tnef/tests/cmdline/directory.test +35 -0
  90. data/ext/tnef/tests/cmdline/help.baseline +63 -0
  91. data/ext/tnef/tests/cmdline/help.test +12 -0
  92. data/ext/tnef/tests/cmdline/interactive.test +5 -0
  93. data/ext/tnef/tests/cmdline/list.baseline +5 -0
  94. data/ext/tnef/tests/cmdline/list.test +21 -0
  95. data/ext/tnef/tests/cmdline/maxsize.baseline +828 -0
  96. data/ext/tnef/tests/cmdline/maxsize.test +43 -0
  97. data/ext/tnef/tests/cmdline/message.html.baseline +95 -0
  98. data/ext/tnef/tests/cmdline/mime-types.baseline +3 -0
  99. data/ext/tnef/tests/cmdline/mime-types.test +11 -0
  100. data/ext/tnef/tests/cmdline/overwrite.baseline +8 -0
  101. data/ext/tnef/tests/cmdline/overwrite.test +40 -0
  102. data/ext/tnef/tests/cmdline/rtf-test.rtf.baseline +0 -0
  103. data/ext/tnef/tests/cmdline/stdin.baseline +2 -0
  104. data/ext/tnef/tests/cmdline/stdin.test +18 -0
  105. data/ext/tnef/tests/cmdline/test.tnef +0 -0
  106. data/ext/tnef/tests/cmdline/triples-test-2.rtf.baseline +0 -0
  107. data/ext/tnef/tests/cmdline/triples-test-2.txt.baseline +0 -0
  108. data/ext/tnef/tests/cmdline/triples-test.txt.baseline +0 -0
  109. data/ext/tnef/tests/cmdline/use-path.baseline +0 -0
  110. data/ext/tnef/tests/cmdline/use-path.test +5 -0
  111. data/ext/tnef/tests/cmdline/verbose.baseline +5 -0
  112. data/ext/tnef/tests/cmdline/verbose.test +19 -0
  113. data/ext/tnef/tests/cmdline/version.baseline +17 -0
  114. data/ext/tnef/tests/cmdline/version.test +14 -0
  115. data/ext/tnef/tests/files/MAPI_ATTACH_DATA_OBJ.test +9 -0
  116. data/ext/tnef/tests/files/MAPI_OBJECT.test +9 -0
  117. data/ext/tnef/tests/files/Makefile.am +16 -0
  118. data/ext/tnef/tests/files/Makefile.in +636 -0
  119. data/ext/tnef/tests/files/baselines/AUTHORS.baseline +8 -0
  120. data/ext/tnef/tests/files/baselines/AUTOEXEC.BAT.baseline +0 -0
  121. data/ext/tnef/tests/files/baselines/CONFIG.SYS.baseline +0 -0
  122. data/ext/tnef/tests/files/baselines/MAPI_ATTACH_DATA_OBJ-body.rtf.baseline +0 -0
  123. data/ext/tnef/tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline +229 -0
  124. data/ext/tnef/tests/files/baselines/MAPI_OBJECT-body.rtf.baseline +0 -0
  125. data/ext/tnef/tests/files/baselines/MAPI_OBJECT.baseline +153 -0
  126. data/ext/tnef/tests/files/baselines/Makefile.am +35 -0
  127. data/ext/tnef/tests/files/baselines/Makefile.in +361 -0
  128. data/ext/tnef/tests/files/baselines/README.baseline +31 -0
  129. data/ext/tnef/tests/files/baselines/TechlibDEC99-JAN00.doc.baseline +0 -0
  130. data/ext/tnef/tests/files/baselines/TechlibDEC99.doc.baseline +0 -0
  131. data/ext/tnef/tests/files/baselines/TechlibNOV99.doc.baseline +0 -0
  132. data/ext/tnef/tests/files/baselines/Untitled_Attachment.baseline +0 -0
  133. data/ext/tnef/tests/files/baselines/VIA_Nytt_1402.doc.baseline +0 -0
  134. data/ext/tnef/tests/files/baselines/VIA_Nytt_1402.pdf.baseline +0 -0
  135. data/ext/tnef/tests/files/baselines/VIA_Nytt_14021.htm.baseline +1914 -0
  136. data/ext/tnef/tests/files/baselines/body-body.html.baseline +95 -0
  137. data/ext/tnef/tests/files/baselines/body.baseline +124 -0
  138. data/ext/tnef/tests/files/baselines/boot.ini.baseline +6 -0
  139. data/ext/tnef/tests/files/baselines/data-before-name-body.rtf.baseline +0 -0
  140. data/ext/tnef/tests/files/baselines/data-before-name.baseline +213 -0
  141. data/ext/tnef/tests/files/baselines/garbage-at-end.baseline +73 -0
  142. data/ext/tnef/tests/files/baselines/generpts.src.baseline +1691 -0
  143. data/ext/tnef/tests/files/baselines/long-filename-body.rtf.baseline +26 -0
  144. data/ext/tnef/tests/files/baselines/long-filename.baseline +218 -0
  145. data/ext/tnef/tests/files/baselines/message.rtf.baseline +0 -0
  146. data/ext/tnef/tests/files/baselines/missing-filenames-body.rtf.baseline +20 -0
  147. data/ext/tnef/tests/files/baselines/missing-filenames.baseline +252 -0
  148. data/ext/tnef/tests/files/baselines/multi-name-property.baseline +243 -0
  149. data/ext/tnef/tests/files/baselines/one-file.baseline +155 -0
  150. data/ext/tnef/tests/files/baselines/rtf-body.rtf.baseline +0 -0
  151. data/ext/tnef/tests/files/baselines/rtf.baseline +167 -0
  152. data/ext/tnef/tests/files/baselines/triples-body.rtf.baseline +0 -0
  153. data/ext/tnef/tests/files/baselines/triples.baseline +254 -0
  154. data/ext/tnef/tests/files/baselines/two-files.baseline +186 -0
  155. data/ext/tnef/tests/files/body.test +9 -0
  156. data/ext/tnef/tests/files/data-before-name.test +9 -0
  157. data/ext/tnef/tests/files/datafiles/MAPI_ATTACH_DATA_OBJ.list +4 -0
  158. data/ext/tnef/tests/files/datafiles/MAPI_ATTACH_DATA_OBJ.tnef +0 -0
  159. data/ext/tnef/tests/files/datafiles/MAPI_OBJECT.list +2 -0
  160. data/ext/tnef/tests/files/datafiles/MAPI_OBJECT.tnef +0 -0
  161. data/ext/tnef/tests/files/datafiles/Makefile.am +27 -0
  162. data/ext/tnef/tests/files/datafiles/Makefile.in +351 -0
  163. data/ext/tnef/tests/files/datafiles/body.list +1 -0
  164. data/ext/tnef/tests/files/datafiles/body.tnef +0 -0
  165. data/ext/tnef/tests/files/datafiles/data-before-name.list +4 -0
  166. data/ext/tnef/tests/files/datafiles/data-before-name.tnef +0 -0
  167. data/ext/tnef/tests/files/datafiles/garbage-at-end.list +0 -0
  168. data/ext/tnef/tests/files/datafiles/garbage-at-end.tnef +0 -0
  169. data/ext/tnef/tests/files/datafiles/long-filename.list +1 -0
  170. data/ext/tnef/tests/files/datafiles/long-filename.tnef +0 -0
  171. data/ext/tnef/tests/files/datafiles/missing-filenames.list +1 -0
  172. data/ext/tnef/tests/files/datafiles/missing-filenames.tnef +0 -0
  173. data/ext/tnef/tests/files/datafiles/multi-name-property.list +0 -0
  174. data/ext/tnef/tests/files/datafiles/multi-name-property.tnef +0 -0
  175. data/ext/tnef/tests/files/datafiles/one-file.list +1 -0
  176. data/ext/tnef/tests/files/datafiles/one-file.tnef +0 -0
  177. data/ext/tnef/tests/files/datafiles/rtf.list +1 -0
  178. data/ext/tnef/tests/files/datafiles/rtf.tnef +0 -0
  179. data/ext/tnef/tests/files/datafiles/triples.list +1 -0
  180. data/ext/tnef/tests/files/datafiles/triples.tnef +0 -0
  181. data/ext/tnef/tests/files/datafiles/two-files.list +2 -0
  182. data/ext/tnef/tests/files/datafiles/two-files.tnef +0 -0
  183. data/ext/tnef/tests/files/file-util.sh +38 -0
  184. data/ext/tnef/tests/files/garbage-at-end.test +9 -0
  185. data/ext/tnef/tests/files/long-filename.test +9 -0
  186. data/ext/tnef/tests/files/missing-filenames.test +9 -0
  187. data/ext/tnef/tests/files/multi-name-property.test +9 -0
  188. data/ext/tnef/tests/files/one-file.test +9 -0
  189. data/ext/tnef/tests/files/rtf.test +9 -0
  190. data/ext/tnef/tests/files/triples.test +9 -0
  191. data/ext/tnef/tests/files/two-files.test +9 -0
  192. data/ext/tnef/tests/util.sh +32 -0
  193. data/ext/tnef/tnef.spec.in +44 -0
  194. data/lib/tnef.rb +30 -0
  195. data/lib/tnef/executable.rb +27 -0
  196. data/lib/tnef/version.rb +3 -0
  197. metadata +243 -0
data/ext/tnef/INSTALL ADDED
@@ -0,0 +1,234 @@
1
+ Installation Instructions
2
+ *************************
3
+
4
+ Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
5
+ 2006 Free Software Foundation, Inc.
6
+
7
+ This file is free documentation; the Free Software Foundation gives
8
+ unlimited permission to copy, distribute and modify it.
9
+
10
+ Basic Installation
11
+ ==================
12
+
13
+ Briefly, the shell commands `./configure; make; make install' should
14
+ configure, build, and install this package. The following
15
+ more-detailed instructions are generic; see the `README' file for
16
+ instructions specific to this package.
17
+
18
+ The `configure' shell script attempts to guess correct values for
19
+ various system-dependent variables used during compilation. It uses
20
+ those values to create a `Makefile' in each directory of the package.
21
+ It may also create one or more `.h' files containing system-dependent
22
+ definitions. Finally, it creates a shell script `config.status' that
23
+ you can run in the future to recreate the current configuration, and a
24
+ file `config.log' containing compiler output (useful mainly for
25
+ debugging `configure').
26
+
27
+ It can also use an optional file (typically called `config.cache'
28
+ and enabled with `--cache-file=config.cache' or simply `-C') that saves
29
+ the results of its tests to speed up reconfiguring. Caching is
30
+ disabled by default to prevent problems with accidental use of stale
31
+ cache files.
32
+
33
+ If you need to do unusual things to compile the package, please try
34
+ to figure out how `configure' could check whether to do them, and mail
35
+ diffs or instructions to the address given in the `README' so they can
36
+ be considered for the next release. If you are using the cache, and at
37
+ some point `config.cache' contains results you don't want to keep, you
38
+ may remove or edit it.
39
+
40
+ The file `configure.ac' (or `configure.in') is used to create
41
+ `configure' by a program called `autoconf'. You need `configure.ac' if
42
+ you want to change it or regenerate `configure' using a newer version
43
+ of `autoconf'.
44
+
45
+ The simplest way to compile this package is:
46
+
47
+ 1. `cd' to the directory containing the package's source code and type
48
+ `./configure' to configure the package for your system.
49
+
50
+ Running `configure' might take a while. While running, it prints
51
+ some messages telling which features it is checking for.
52
+
53
+ 2. Type `make' to compile the package.
54
+
55
+ 3. Optionally, type `make check' to run any self-tests that come with
56
+ the package.
57
+
58
+ 4. Type `make install' to install the programs and any data files and
59
+ documentation.
60
+
61
+ 5. You can remove the program binaries and object files from the
62
+ source code directory by typing `make clean'. To also remove the
63
+ files that `configure' created (so you can compile the package for
64
+ a different kind of computer), type `make distclean'. There is
65
+ also a `make maintainer-clean' target, but that is intended mainly
66
+ for the package's developers. If you use it, you may have to get
67
+ all sorts of other programs in order to regenerate files that came
68
+ with the distribution.
69
+
70
+ Compilers and Options
71
+ =====================
72
+
73
+ Some systems require unusual options for compilation or linking that the
74
+ `configure' script does not know about. Run `./configure --help' for
75
+ details on some of the pertinent environment variables.
76
+
77
+ You can give `configure' initial values for configuration parameters
78
+ by setting variables in the command line or in the environment. Here
79
+ is an example:
80
+
81
+ ./configure CC=c99 CFLAGS=-g LIBS=-lposix
82
+
83
+ *Note Defining Variables::, for more details.
84
+
85
+ Compiling For Multiple Architectures
86
+ ====================================
87
+
88
+ You can compile the package for more than one kind of computer at the
89
+ same time, by placing the object files for each architecture in their
90
+ own directory. To do this, you can use GNU `make'. `cd' to the
91
+ directory where you want the object files and executables to go and run
92
+ the `configure' script. `configure' automatically checks for the
93
+ source code in the directory that `configure' is in and in `..'.
94
+
95
+ With a non-GNU `make', it is safer to compile the package for one
96
+ architecture at a time in the source code directory. After you have
97
+ installed the package for one architecture, use `make distclean' before
98
+ reconfiguring for another architecture.
99
+
100
+ Installation Names
101
+ ==================
102
+
103
+ By default, `make install' installs the package's commands under
104
+ `/usr/local/bin', include files under `/usr/local/include', etc. You
105
+ can specify an installation prefix other than `/usr/local' by giving
106
+ `configure' the option `--prefix=PREFIX'.
107
+
108
+ You can specify separate installation prefixes for
109
+ architecture-specific files and architecture-independent files. If you
110
+ pass the option `--exec-prefix=PREFIX' to `configure', the package uses
111
+ PREFIX as the prefix for installing programs and libraries.
112
+ Documentation and other data files still use the regular prefix.
113
+
114
+ In addition, if you use an unusual directory layout you can give
115
+ options like `--bindir=DIR' to specify different values for particular
116
+ kinds of files. Run `configure --help' for a list of the directories
117
+ you can set and what kinds of files go in them.
118
+
119
+ If the package supports it, you can cause programs to be installed
120
+ with an extra prefix or suffix on their names by giving `configure' the
121
+ option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
122
+
123
+ Optional Features
124
+ =================
125
+
126
+ Some packages pay attention to `--enable-FEATURE' options to
127
+ `configure', where FEATURE indicates an optional part of the package.
128
+ They may also pay attention to `--with-PACKAGE' options, where PACKAGE
129
+ is something like `gnu-as' or `x' (for the X Window System). The
130
+ `README' should mention any `--enable-' and `--with-' options that the
131
+ package recognizes.
132
+
133
+ For packages that use the X Window System, `configure' can usually
134
+ find the X include and library files automatically, but if it doesn't,
135
+ you can use the `configure' options `--x-includes=DIR' and
136
+ `--x-libraries=DIR' to specify their locations.
137
+
138
+ Specifying the System Type
139
+ ==========================
140
+
141
+ There may be some features `configure' cannot figure out automatically,
142
+ but needs to determine by the type of machine the package will run on.
143
+ Usually, assuming the package is built to be run on the _same_
144
+ architectures, `configure' can figure that out, but if it prints a
145
+ message saying it cannot guess the machine type, give it the
146
+ `--build=TYPE' option. TYPE can either be a short name for the system
147
+ type, such as `sun4', or a canonical name which has the form:
148
+
149
+ CPU-COMPANY-SYSTEM
150
+
151
+ where SYSTEM can have one of these forms:
152
+
153
+ OS KERNEL-OS
154
+
155
+ See the file `config.sub' for the possible values of each field. If
156
+ `config.sub' isn't included in this package, then this package doesn't
157
+ need to know the machine type.
158
+
159
+ If you are _building_ compiler tools for cross-compiling, you should
160
+ use the option `--target=TYPE' to select the type of system they will
161
+ produce code for.
162
+
163
+ If you want to _use_ a cross compiler, that generates code for a
164
+ platform different from the build platform, you should specify the
165
+ "host" platform (i.e., that on which the generated programs will
166
+ eventually be run) with `--host=TYPE'.
167
+
168
+ Sharing Defaults
169
+ ================
170
+
171
+ If you want to set default values for `configure' scripts to share, you
172
+ can create a site shell script called `config.site' that gives default
173
+ values for variables like `CC', `cache_file', and `prefix'.
174
+ `configure' looks for `PREFIX/share/config.site' if it exists, then
175
+ `PREFIX/etc/config.site' if it exists. Or, you can set the
176
+ `CONFIG_SITE' environment variable to the location of the site script.
177
+ A warning: not all `configure' scripts look for a site script.
178
+
179
+ Defining Variables
180
+ ==================
181
+
182
+ Variables not defined in a site shell script can be set in the
183
+ environment passed to `configure'. However, some packages may run
184
+ configure again during the build, and the customized values of these
185
+ variables may be lost. In order to avoid this problem, you should set
186
+ them in the `configure' command line, using `VAR=value'. For example:
187
+
188
+ ./configure CC=/usr/local2/bin/gcc
189
+
190
+ causes the specified `gcc' to be used as the C compiler (unless it is
191
+ overridden in the site shell script).
192
+
193
+ Unfortunately, this technique does not work for `CONFIG_SHELL' due to
194
+ an Autoconf bug. Until the bug is fixed you can use this workaround:
195
+
196
+ CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
197
+
198
+ `configure' Invocation
199
+ ======================
200
+
201
+ `configure' recognizes the following options to control how it operates.
202
+
203
+ `--help'
204
+ `-h'
205
+ Print a summary of the options to `configure', and exit.
206
+
207
+ `--version'
208
+ `-V'
209
+ Print the version of Autoconf used to generate the `configure'
210
+ script, and exit.
211
+
212
+ `--cache-file=FILE'
213
+ Enable the cache: use and save the results of the tests in FILE,
214
+ traditionally `config.cache'. FILE defaults to `/dev/null' to
215
+ disable caching.
216
+
217
+ `--config-cache'
218
+ `-C'
219
+ Alias for `--cache-file=config.cache'.
220
+
221
+ `--quiet'
222
+ `--silent'
223
+ `-q'
224
+ Do not print messages saying which checks are being made. To
225
+ suppress all normal output, redirect it to `/dev/null' (any error
226
+ messages will still be shown).
227
+
228
+ `--srcdir=DIR'
229
+ Look for the package's source code in directory DIR. Usually
230
+ `configure' can determine that directory automatically.
231
+
232
+ `configure' also accepts some other, not widely useful, options. Run
233
+ `configure --help' for more details.
234
+
@@ -0,0 +1,7 @@
1
+ AUTOMAKE_OPTIONS= gnu
2
+
3
+ EXTRA_DIST = TODO configure BUGS.in tnef.spec.in
4
+ SUBDIRS = doc src tests
5
+
6
+ web-build web-test web-push:
7
+ (cd doc && $(MAKE) $(AM_MAKEFLAGS) $@)
@@ -0,0 +1,699 @@
1
+ # Makefile.in generated by automake 1.11.3 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
+ # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6
+ # Foundation, Inc.
7
+ # This Makefile.in is free software; the Free Software Foundation
8
+ # gives unlimited permission to copy and/or distribute it,
9
+ # with or without modifications, as long as this notice is preserved.
10
+
11
+ # This program is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
15
+
16
+ @SET_MAKE@
17
+ VPATH = @srcdir@
18
+ pkgdatadir = $(datadir)/@PACKAGE@
19
+ pkgincludedir = $(includedir)/@PACKAGE@
20
+ pkglibdir = $(libdir)/@PACKAGE@
21
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
22
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
23
+ install_sh_DATA = $(install_sh) -c -m 644
24
+ install_sh_PROGRAM = $(install_sh) -c
25
+ install_sh_SCRIPT = $(install_sh) -c
26
+ INSTALL_HEADER = $(INSTALL_DATA)
27
+ transform = $(program_transform_name)
28
+ NORMAL_INSTALL = :
29
+ PRE_INSTALL = :
30
+ POST_INSTALL = :
31
+ NORMAL_UNINSTALL = :
32
+ PRE_UNINSTALL = :
33
+ POST_UNINSTALL = :
34
+ subdir = .
35
+ DIST_COMMON = README $(am__configure_deps) $(srcdir)/BUGS.in \
36
+ $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
37
+ $(srcdir)/tnef.spec.in $(top_srcdir)/configure AUTHORS COPYING \
38
+ ChangeLog INSTALL NEWS THANKS TODO depcomp install-sh missing \
39
+ mkinstalldirs
40
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
41
+ am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
42
+ $(top_srcdir)/configure.in
43
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
44
+ $(ACLOCAL_M4)
45
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
46
+ configure.lineno config.status.lineno
47
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
48
+ CONFIG_HEADER = $(top_builddir)/src/config.h
49
+ CONFIG_CLEAN_FILES = BUGS tnef.spec
50
+ CONFIG_CLEAN_VPATH_FILES =
51
+ SOURCES =
52
+ DIST_SOURCES =
53
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
54
+ html-recursive info-recursive install-data-recursive \
55
+ install-dvi-recursive install-exec-recursive \
56
+ install-html-recursive install-info-recursive \
57
+ install-pdf-recursive install-ps-recursive install-recursive \
58
+ installcheck-recursive installdirs-recursive pdf-recursive \
59
+ ps-recursive uninstall-recursive
60
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
61
+ distclean-recursive maintainer-clean-recursive
62
+ AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
63
+ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
64
+ distdir dist dist-all distcheck
65
+ ETAGS = etags
66
+ CTAGS = ctags
67
+ DIST_SUBDIRS = $(SUBDIRS)
68
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
69
+ distdir = $(PACKAGE)-$(VERSION)
70
+ top_distdir = $(distdir)
71
+ am__remove_distdir = \
72
+ if test -d "$(distdir)"; then \
73
+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
74
+ && rm -rf "$(distdir)" \
75
+ || { sleep 5 && rm -rf "$(distdir)"; }; \
76
+ else :; fi
77
+ am__relativize = \
78
+ dir0=`pwd`; \
79
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
80
+ sed_rest='s,^[^/]*/*,,'; \
81
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
82
+ sed_butlast='s,/*[^/]*$$,,'; \
83
+ while test -n "$$dir1"; do \
84
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
85
+ if test "$$first" != "."; then \
86
+ if test "$$first" = ".."; then \
87
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
88
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
89
+ else \
90
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
91
+ if test "$$first2" = "$$first"; then \
92
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
93
+ else \
94
+ dir2="../$$dir2"; \
95
+ fi; \
96
+ dir0="$$dir0"/"$$first"; \
97
+ fi; \
98
+ fi; \
99
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
100
+ done; \
101
+ reldir="$$dir2"
102
+ DIST_ARCHIVES = $(distdir).tar.gz
103
+ GZIP_ENV = --best
104
+ distuninstallcheck_listfiles = find . -type f -print
105
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
106
+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
107
+ distcleancheck_listfiles = find . -type f -print
108
+ ACLOCAL = @ACLOCAL@
109
+ AMTAR = @AMTAR@
110
+ AUTOCONF = @AUTOCONF@
111
+ AUTOHEADER = @AUTOHEADER@
112
+ AUTOMAKE = @AUTOMAKE@
113
+ AWK = @AWK@
114
+ CC = @CC@
115
+ CCDEPMODE = @CCDEPMODE@
116
+ CFLAGS = @CFLAGS@
117
+ CPP = @CPP@
118
+ CPPFLAGS = @CPPFLAGS@
119
+ CXX = @CXX@
120
+ CXXDEPMODE = @CXXDEPMODE@
121
+ CXXFLAGS = @CXXFLAGS@
122
+ CYGPATH_W = @CYGPATH_W@
123
+ DEFS = @DEFS@
124
+ DEPDIR = @DEPDIR@
125
+ ECHO_C = @ECHO_C@
126
+ ECHO_N = @ECHO_N@
127
+ ECHO_T = @ECHO_T@
128
+ EGREP = @EGREP@
129
+ EXEEXT = @EXEEXT@
130
+ GREP = @GREP@
131
+ INSTALL = @INSTALL@
132
+ INSTALL_DATA = @INSTALL_DATA@
133
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
134
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
135
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
136
+ LDFLAGS = @LDFLAGS@
137
+ LIBOBJS = @LIBOBJS@
138
+ LIBS = @LIBS@
139
+ LN_S = @LN_S@
140
+ LTLIBOBJS = @LTLIBOBJS@
141
+ MAINT = @MAINT@
142
+ MAKEINFO = @MAKEINFO@
143
+ MKDIR_P = @MKDIR_P@
144
+ OBJEXT = @OBJEXT@
145
+ PACKAGE = @PACKAGE@
146
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
147
+ PACKAGE_NAME = @PACKAGE_NAME@
148
+ PACKAGE_STRING = @PACKAGE_STRING@
149
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
150
+ PACKAGE_URL = @PACKAGE_URL@
151
+ PACKAGE_VERSION = @PACKAGE_VERSION@
152
+ PATH_SEPARATOR = @PATH_SEPARATOR@
153
+ RANLIB = @RANLIB@
154
+ SET_MAKE = @SET_MAKE@
155
+ SHELL = @SHELL@
156
+ STRIP = @STRIP@
157
+ VERSION = @VERSION@
158
+ abs_builddir = @abs_builddir@
159
+ abs_srcdir = @abs_srcdir@
160
+ abs_top_builddir = @abs_top_builddir@
161
+ abs_top_srcdir = @abs_top_srcdir@
162
+ ac_ct_CC = @ac_ct_CC@
163
+ ac_ct_CXX = @ac_ct_CXX@
164
+ am__include = @am__include@
165
+ am__leading_dot = @am__leading_dot@
166
+ am__quote = @am__quote@
167
+ am__tar = @am__tar@
168
+ am__untar = @am__untar@
169
+ bindir = @bindir@
170
+ build_alias = @build_alias@
171
+ builddir = @builddir@
172
+ datadir = @datadir@
173
+ datarootdir = @datarootdir@
174
+ docdir = @docdir@
175
+ dvidir = @dvidir@
176
+ exec_prefix = @exec_prefix@
177
+ host_alias = @host_alias@
178
+ htmldir = @htmldir@
179
+ includedir = @includedir@
180
+ infodir = @infodir@
181
+ install_sh = @install_sh@
182
+ libdir = @libdir@
183
+ libexecdir = @libexecdir@
184
+ localedir = @localedir@
185
+ localstatedir = @localstatedir@
186
+ mandir = @mandir@
187
+ mkdir_p = @mkdir_p@
188
+ oldincludedir = @oldincludedir@
189
+ pdfdir = @pdfdir@
190
+ prefix = @prefix@
191
+ program_transform_name = @program_transform_name@
192
+ psdir = @psdir@
193
+ sbindir = @sbindir@
194
+ sharedstatedir = @sharedstatedir@
195
+ srcdir = @srcdir@
196
+ sysconfdir = @sysconfdir@
197
+ target_alias = @target_alias@
198
+ top_build_prefix = @top_build_prefix@
199
+ top_builddir = @top_builddir@
200
+ top_srcdir = @top_srcdir@
201
+ AUTOMAKE_OPTIONS = gnu
202
+ EXTRA_DIST = TODO configure BUGS.in tnef.spec.in
203
+ SUBDIRS = doc src tests
204
+ all: all-recursive
205
+
206
+ .SUFFIXES:
207
+ am--refresh: Makefile
208
+ @:
209
+ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
210
+ @for dep in $?; do \
211
+ case '$(am__configure_deps)' in \
212
+ *$$dep*) \
213
+ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
214
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
215
+ && exit 0; \
216
+ exit 1;; \
217
+ esac; \
218
+ done; \
219
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
220
+ $(am__cd) $(top_srcdir) && \
221
+ $(AUTOMAKE) --gnu Makefile
222
+ .PRECIOUS: Makefile
223
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
224
+ @case '$?' in \
225
+ *config.status*) \
226
+ echo ' $(SHELL) ./config.status'; \
227
+ $(SHELL) ./config.status;; \
228
+ *) \
229
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
230
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
231
+ esac;
232
+
233
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
234
+ $(SHELL) ./config.status --recheck
235
+
236
+ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
237
+ $(am__cd) $(srcdir) && $(AUTOCONF)
238
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
239
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
240
+ $(am__aclocal_m4_deps):
241
+ BUGS: $(top_builddir)/config.status $(srcdir)/BUGS.in
242
+ cd $(top_builddir) && $(SHELL) ./config.status $@
243
+ tnef.spec: $(top_builddir)/config.status $(srcdir)/tnef.spec.in
244
+ cd $(top_builddir) && $(SHELL) ./config.status $@
245
+
246
+ # This directory's subdirectories are mostly independent; you can cd
247
+ # into them and run `make' without going through this Makefile.
248
+ # To change the values of `make' variables: instead of editing Makefiles,
249
+ # (1) if the variable is set in `config.status', edit `config.status'
250
+ # (which will cause the Makefiles to be regenerated when you run `make');
251
+ # (2) otherwise, pass the desired values on the `make' command line.
252
+ $(RECURSIVE_TARGETS):
253
+ @fail= failcom='exit 1'; \
254
+ for f in x $$MAKEFLAGS; do \
255
+ case $$f in \
256
+ *=* | --[!k]*);; \
257
+ *k*) failcom='fail=yes';; \
258
+ esac; \
259
+ done; \
260
+ dot_seen=no; \
261
+ target=`echo $@ | sed s/-recursive//`; \
262
+ list='$(SUBDIRS)'; for subdir in $$list; do \
263
+ echo "Making $$target in $$subdir"; \
264
+ if test "$$subdir" = "."; then \
265
+ dot_seen=yes; \
266
+ local_target="$$target-am"; \
267
+ else \
268
+ local_target="$$target"; \
269
+ fi; \
270
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
271
+ || eval $$failcom; \
272
+ done; \
273
+ if test "$$dot_seen" = "no"; then \
274
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
275
+ fi; test -z "$$fail"
276
+
277
+ $(RECURSIVE_CLEAN_TARGETS):
278
+ @fail= failcom='exit 1'; \
279
+ for f in x $$MAKEFLAGS; do \
280
+ case $$f in \
281
+ *=* | --[!k]*);; \
282
+ *k*) failcom='fail=yes';; \
283
+ esac; \
284
+ done; \
285
+ dot_seen=no; \
286
+ case "$@" in \
287
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
288
+ *) list='$(SUBDIRS)' ;; \
289
+ esac; \
290
+ rev=''; for subdir in $$list; do \
291
+ if test "$$subdir" = "."; then :; else \
292
+ rev="$$subdir $$rev"; \
293
+ fi; \
294
+ done; \
295
+ rev="$$rev ."; \
296
+ target=`echo $@ | sed s/-recursive//`; \
297
+ for subdir in $$rev; do \
298
+ echo "Making $$target in $$subdir"; \
299
+ if test "$$subdir" = "."; then \
300
+ local_target="$$target-am"; \
301
+ else \
302
+ local_target="$$target"; \
303
+ fi; \
304
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
305
+ || eval $$failcom; \
306
+ done && test -z "$$fail"
307
+ tags-recursive:
308
+ list='$(SUBDIRS)'; for subdir in $$list; do \
309
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
310
+ done
311
+ ctags-recursive:
312
+ list='$(SUBDIRS)'; for subdir in $$list; do \
313
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
314
+ done
315
+
316
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
317
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
318
+ unique=`for i in $$list; do \
319
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
320
+ done | \
321
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
322
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
323
+ mkid -fID $$unique
324
+ tags: TAGS
325
+
326
+ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
327
+ $(TAGS_FILES) $(LISP)
328
+ set x; \
329
+ here=`pwd`; \
330
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
331
+ include_option=--etags-include; \
332
+ empty_fix=.; \
333
+ else \
334
+ include_option=--include; \
335
+ empty_fix=; \
336
+ fi; \
337
+ list='$(SUBDIRS)'; for subdir in $$list; do \
338
+ if test "$$subdir" = .; then :; else \
339
+ test ! -f $$subdir/TAGS || \
340
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
341
+ fi; \
342
+ done; \
343
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
344
+ unique=`for i in $$list; do \
345
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
346
+ done | \
347
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
348
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
349
+ shift; \
350
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
351
+ test -n "$$unique" || unique=$$empty_fix; \
352
+ if test $$# -gt 0; then \
353
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
354
+ "$$@" $$unique; \
355
+ else \
356
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
357
+ $$unique; \
358
+ fi; \
359
+ fi
360
+ ctags: CTAGS
361
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
362
+ $(TAGS_FILES) $(LISP)
363
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
364
+ unique=`for i in $$list; do \
365
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
366
+ done | \
367
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
368
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
369
+ test -z "$(CTAGS_ARGS)$$unique" \
370
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
371
+ $$unique
372
+
373
+ GTAGS:
374
+ here=`$(am__cd) $(top_builddir) && pwd` \
375
+ && $(am__cd) $(top_srcdir) \
376
+ && gtags -i $(GTAGS_ARGS) "$$here"
377
+
378
+ distclean-tags:
379
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
380
+
381
+ distdir: $(DISTFILES)
382
+ $(am__remove_distdir)
383
+ test -d "$(distdir)" || mkdir "$(distdir)"
384
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
385
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
386
+ list='$(DISTFILES)'; \
387
+ dist_files=`for file in $$list; do echo $$file; done | \
388
+ sed -e "s|^$$srcdirstrip/||;t" \
389
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
390
+ case $$dist_files in \
391
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
392
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
393
+ sort -u` ;; \
394
+ esac; \
395
+ for file in $$dist_files; do \
396
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
397
+ if test -d $$d/$$file; then \
398
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
399
+ if test -d "$(distdir)/$$file"; then \
400
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
401
+ fi; \
402
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
403
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
404
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
405
+ fi; \
406
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
407
+ else \
408
+ test -f "$(distdir)/$$file" \
409
+ || cp -p $$d/$$file "$(distdir)/$$file" \
410
+ || exit 1; \
411
+ fi; \
412
+ done
413
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
414
+ if test "$$subdir" = .; then :; else \
415
+ test -d "$(distdir)/$$subdir" \
416
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
417
+ || exit 1; \
418
+ fi; \
419
+ done
420
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
421
+ if test "$$subdir" = .; then :; else \
422
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
423
+ $(am__relativize); \
424
+ new_distdir=$$reldir; \
425
+ dir1=$$subdir; dir2="$(top_distdir)"; \
426
+ $(am__relativize); \
427
+ new_top_distdir=$$reldir; \
428
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
429
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
430
+ ($(am__cd) $$subdir && \
431
+ $(MAKE) $(AM_MAKEFLAGS) \
432
+ top_distdir="$$new_top_distdir" \
433
+ distdir="$$new_distdir" \
434
+ am__remove_distdir=: \
435
+ am__skip_length_check=: \
436
+ am__skip_mode_fix=: \
437
+ distdir) \
438
+ || exit 1; \
439
+ fi; \
440
+ done
441
+ -test -n "$(am__skip_mode_fix)" \
442
+ || find "$(distdir)" -type d ! -perm -755 \
443
+ -exec chmod u+rwx,go+rx {} \; -o \
444
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
445
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
446
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
447
+ || chmod -R a+r "$(distdir)"
448
+ dist-gzip: distdir
449
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
450
+ $(am__remove_distdir)
451
+
452
+ dist-bzip2: distdir
453
+ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
454
+ $(am__remove_distdir)
455
+
456
+ dist-lzip: distdir
457
+ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
458
+ $(am__remove_distdir)
459
+
460
+ dist-lzma: distdir
461
+ tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
462
+ $(am__remove_distdir)
463
+
464
+ dist-xz: distdir
465
+ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
466
+ $(am__remove_distdir)
467
+
468
+ dist-tarZ: distdir
469
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
470
+ $(am__remove_distdir)
471
+
472
+ dist-shar: distdir
473
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
474
+ $(am__remove_distdir)
475
+
476
+ dist-zip: distdir
477
+ -rm -f $(distdir).zip
478
+ zip -rq $(distdir).zip $(distdir)
479
+ $(am__remove_distdir)
480
+
481
+ dist dist-all: distdir
482
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
483
+ $(am__remove_distdir)
484
+
485
+ # This target untars the dist file and tries a VPATH configuration. Then
486
+ # it guarantees that the distribution is self-contained by making another
487
+ # tarfile.
488
+ distcheck: dist
489
+ case '$(DIST_ARCHIVES)' in \
490
+ *.tar.gz*) \
491
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
492
+ *.tar.bz2*) \
493
+ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
494
+ *.tar.lzma*) \
495
+ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
496
+ *.tar.lz*) \
497
+ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
498
+ *.tar.xz*) \
499
+ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
500
+ *.tar.Z*) \
501
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
502
+ *.shar.gz*) \
503
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
504
+ *.zip*) \
505
+ unzip $(distdir).zip ;;\
506
+ esac
507
+ chmod -R a-w $(distdir); chmod a+w $(distdir)
508
+ mkdir $(distdir)/_build
509
+ mkdir $(distdir)/_inst
510
+ chmod a-w $(distdir)
511
+ test -d $(distdir)/_build || exit 0; \
512
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
513
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
514
+ && am__cwd=`pwd` \
515
+ && $(am__cd) $(distdir)/_build \
516
+ && ../configure --srcdir=.. --prefix="$$dc_install_base" \
517
+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
518
+ $(DISTCHECK_CONFIGURE_FLAGS) \
519
+ && $(MAKE) $(AM_MAKEFLAGS) \
520
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
521
+ && $(MAKE) $(AM_MAKEFLAGS) check \
522
+ && $(MAKE) $(AM_MAKEFLAGS) install \
523
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
524
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
525
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
526
+ distuninstallcheck \
527
+ && chmod -R a-w "$$dc_install_base" \
528
+ && ({ \
529
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
530
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
531
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
532
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
533
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
534
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
535
+ && rm -rf "$$dc_destdir" \
536
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
537
+ && rm -rf $(DIST_ARCHIVES) \
538
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
539
+ && cd "$$am__cwd" \
540
+ || exit 1
541
+ $(am__remove_distdir)
542
+ @(echo "$(distdir) archives ready for distribution: "; \
543
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
544
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
545
+ distuninstallcheck:
546
+ @test -n '$(distuninstallcheck_dir)' || { \
547
+ echo 'ERROR: trying to run $@ with an empty' \
548
+ '$$(distuninstallcheck_dir)' >&2; \
549
+ exit 1; \
550
+ }; \
551
+ $(am__cd) '$(distuninstallcheck_dir)' || { \
552
+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
553
+ exit 1; \
554
+ }; \
555
+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
556
+ || { echo "ERROR: files left after uninstall:" ; \
557
+ if test -n "$(DESTDIR)"; then \
558
+ echo " (check DESTDIR support)"; \
559
+ fi ; \
560
+ $(distuninstallcheck_listfiles) ; \
561
+ exit 1; } >&2
562
+ distcleancheck: distclean
563
+ @if test '$(srcdir)' = . ; then \
564
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
565
+ exit 1 ; \
566
+ fi
567
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
568
+ || { echo "ERROR: files left in build directory after distclean:" ; \
569
+ $(distcleancheck_listfiles) ; \
570
+ exit 1; } >&2
571
+ check-am: all-am
572
+ check: check-recursive
573
+ all-am: Makefile
574
+ installdirs: installdirs-recursive
575
+ installdirs-am:
576
+ install: install-recursive
577
+ install-exec: install-exec-recursive
578
+ install-data: install-data-recursive
579
+ uninstall: uninstall-recursive
580
+
581
+ install-am: all-am
582
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
583
+
584
+ installcheck: installcheck-recursive
585
+ install-strip:
586
+ if test -z '$(STRIP)'; then \
587
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
588
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
589
+ install; \
590
+ else \
591
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
592
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
593
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
594
+ fi
595
+ mostlyclean-generic:
596
+
597
+ clean-generic:
598
+
599
+ distclean-generic:
600
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
601
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
602
+
603
+ maintainer-clean-generic:
604
+ @echo "This command is intended for maintainers to use"
605
+ @echo "it deletes files that may require special tools to rebuild."
606
+ clean: clean-recursive
607
+
608
+ clean-am: clean-generic mostlyclean-am
609
+
610
+ distclean: distclean-recursive
611
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
612
+ -rm -f Makefile
613
+ distclean-am: clean-am distclean-generic distclean-tags
614
+
615
+ dvi: dvi-recursive
616
+
617
+ dvi-am:
618
+
619
+ html: html-recursive
620
+
621
+ html-am:
622
+
623
+ info: info-recursive
624
+
625
+ info-am:
626
+
627
+ install-data-am:
628
+
629
+ install-dvi: install-dvi-recursive
630
+
631
+ install-dvi-am:
632
+
633
+ install-exec-am:
634
+
635
+ install-html: install-html-recursive
636
+
637
+ install-html-am:
638
+
639
+ install-info: install-info-recursive
640
+
641
+ install-info-am:
642
+
643
+ install-man:
644
+
645
+ install-pdf: install-pdf-recursive
646
+
647
+ install-pdf-am:
648
+
649
+ install-ps: install-ps-recursive
650
+
651
+ install-ps-am:
652
+
653
+ installcheck-am:
654
+
655
+ maintainer-clean: maintainer-clean-recursive
656
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
657
+ -rm -rf $(top_srcdir)/autom4te.cache
658
+ -rm -f Makefile
659
+ maintainer-clean-am: distclean-am maintainer-clean-generic
660
+
661
+ mostlyclean: mostlyclean-recursive
662
+
663
+ mostlyclean-am: mostlyclean-generic
664
+
665
+ pdf: pdf-recursive
666
+
667
+ pdf-am:
668
+
669
+ ps: ps-recursive
670
+
671
+ ps-am:
672
+
673
+ uninstall-am:
674
+
675
+ .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
676
+ install-am install-strip tags-recursive
677
+
678
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
679
+ all all-am am--refresh check check-am clean clean-generic \
680
+ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
681
+ dist-lzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \
682
+ distcheck distclean distclean-generic distclean-tags \
683
+ distcleancheck distdir distuninstallcheck dvi dvi-am html \
684
+ html-am info info-am install install-am install-data \
685
+ install-data-am install-dvi install-dvi-am install-exec \
686
+ install-exec-am install-html install-html-am install-info \
687
+ install-info-am install-man install-pdf install-pdf-am \
688
+ install-ps install-ps-am install-strip installcheck \
689
+ installcheck-am installdirs installdirs-am maintainer-clean \
690
+ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
691
+ pdf-am ps ps-am tags tags-recursive uninstall uninstall-am
692
+
693
+
694
+ web-build web-test web-push:
695
+ (cd doc && $(MAKE) $(AM_MAKEFLAGS) $@)
696
+
697
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
698
+ # Otherwise a system limit (for SysV at least) may be exceeded.
699
+ .NOEXPORT: