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
@@ -0,0 +1,9 @@
1
+ #!/bin/sh
2
+
3
+ . $srcdir/../util.sh
4
+ . $srcdir/file-util.sh
5
+
6
+ cleanup
7
+ mktestdir
8
+ run_test
9
+ cleanup
@@ -0,0 +1,4 @@
1
+ VIA_Nytt_1402.doc
2
+ VIA_Nytt_1402.pdf
3
+ VIA_Nytt_14021.htm
4
+ MAPI_ATTACH_DATA_OBJ-body.rtf
@@ -0,0 +1,2 @@
1
+ Untitled_Attachment
2
+ MAPI_OBJECT-body.rtf
@@ -0,0 +1,27 @@
1
+ EXTRA_DIST = MAPI_ATTACH_DATA_OBJ.list \
2
+ MAPI_ATTACH_DATA_OBJ.tnef \
3
+ MAPI_OBJECT.list \
4
+ MAPI_OBJECT.tnef \
5
+ body.list \
6
+ body.tnef \
7
+ data-before-name.list \
8
+ data-before-name.tnef \
9
+ garbage-at-end.list \
10
+ garbage-at-end.tnef \
11
+ long-filename.list \
12
+ long-filename.tnef \
13
+ missing-filenames.list \
14
+ missing-filenames.tnef \
15
+ multi-name-property.list \
16
+ multi-name-property.tnef \
17
+ one-file.list \
18
+ one-file.tnef \
19
+ rtf.list \
20
+ rtf.tnef \
21
+ triples.list \
22
+ triples.tnef \
23
+ two-files.list \
24
+ two-files.tnef
25
+
26
+
27
+
@@ -0,0 +1,351 @@
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 = tests/files/datafiles
35
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
36
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
37
+ am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
38
+ $(top_srcdir)/configure.in
39
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
40
+ $(ACLOCAL_M4)
41
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
42
+ CONFIG_HEADER = $(top_builddir)/src/config.h
43
+ CONFIG_CLEAN_FILES =
44
+ CONFIG_CLEAN_VPATH_FILES =
45
+ SOURCES =
46
+ DIST_SOURCES =
47
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
48
+ ACLOCAL = @ACLOCAL@
49
+ AMTAR = @AMTAR@
50
+ AUTOCONF = @AUTOCONF@
51
+ AUTOHEADER = @AUTOHEADER@
52
+ AUTOMAKE = @AUTOMAKE@
53
+ AWK = @AWK@
54
+ CC = @CC@
55
+ CCDEPMODE = @CCDEPMODE@
56
+ CFLAGS = @CFLAGS@
57
+ CPP = @CPP@
58
+ CPPFLAGS = @CPPFLAGS@
59
+ CXX = @CXX@
60
+ CXXDEPMODE = @CXXDEPMODE@
61
+ CXXFLAGS = @CXXFLAGS@
62
+ CYGPATH_W = @CYGPATH_W@
63
+ DEFS = @DEFS@
64
+ DEPDIR = @DEPDIR@
65
+ ECHO_C = @ECHO_C@
66
+ ECHO_N = @ECHO_N@
67
+ ECHO_T = @ECHO_T@
68
+ EGREP = @EGREP@
69
+ EXEEXT = @EXEEXT@
70
+ GREP = @GREP@
71
+ INSTALL = @INSTALL@
72
+ INSTALL_DATA = @INSTALL_DATA@
73
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
74
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
75
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
76
+ LDFLAGS = @LDFLAGS@
77
+ LIBOBJS = @LIBOBJS@
78
+ LIBS = @LIBS@
79
+ LN_S = @LN_S@
80
+ LTLIBOBJS = @LTLIBOBJS@
81
+ MAINT = @MAINT@
82
+ MAKEINFO = @MAKEINFO@
83
+ MKDIR_P = @MKDIR_P@
84
+ OBJEXT = @OBJEXT@
85
+ PACKAGE = @PACKAGE@
86
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
87
+ PACKAGE_NAME = @PACKAGE_NAME@
88
+ PACKAGE_STRING = @PACKAGE_STRING@
89
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
90
+ PACKAGE_URL = @PACKAGE_URL@
91
+ PACKAGE_VERSION = @PACKAGE_VERSION@
92
+ PATH_SEPARATOR = @PATH_SEPARATOR@
93
+ RANLIB = @RANLIB@
94
+ SET_MAKE = @SET_MAKE@
95
+ SHELL = @SHELL@
96
+ STRIP = @STRIP@
97
+ VERSION = @VERSION@
98
+ abs_builddir = @abs_builddir@
99
+ abs_srcdir = @abs_srcdir@
100
+ abs_top_builddir = @abs_top_builddir@
101
+ abs_top_srcdir = @abs_top_srcdir@
102
+ ac_ct_CC = @ac_ct_CC@
103
+ ac_ct_CXX = @ac_ct_CXX@
104
+ am__include = @am__include@
105
+ am__leading_dot = @am__leading_dot@
106
+ am__quote = @am__quote@
107
+ am__tar = @am__tar@
108
+ am__untar = @am__untar@
109
+ bindir = @bindir@
110
+ build_alias = @build_alias@
111
+ builddir = @builddir@
112
+ datadir = @datadir@
113
+ datarootdir = @datarootdir@
114
+ docdir = @docdir@
115
+ dvidir = @dvidir@
116
+ exec_prefix = @exec_prefix@
117
+ host_alias = @host_alias@
118
+ htmldir = @htmldir@
119
+ includedir = @includedir@
120
+ infodir = @infodir@
121
+ install_sh = @install_sh@
122
+ libdir = @libdir@
123
+ libexecdir = @libexecdir@
124
+ localedir = @localedir@
125
+ localstatedir = @localstatedir@
126
+ mandir = @mandir@
127
+ mkdir_p = @mkdir_p@
128
+ oldincludedir = @oldincludedir@
129
+ pdfdir = @pdfdir@
130
+ prefix = @prefix@
131
+ program_transform_name = @program_transform_name@
132
+ psdir = @psdir@
133
+ sbindir = @sbindir@
134
+ sharedstatedir = @sharedstatedir@
135
+ srcdir = @srcdir@
136
+ sysconfdir = @sysconfdir@
137
+ target_alias = @target_alias@
138
+ top_build_prefix = @top_build_prefix@
139
+ top_builddir = @top_builddir@
140
+ top_srcdir = @top_srcdir@
141
+ EXTRA_DIST = MAPI_ATTACH_DATA_OBJ.list \
142
+ MAPI_ATTACH_DATA_OBJ.tnef \
143
+ MAPI_OBJECT.list \
144
+ MAPI_OBJECT.tnef \
145
+ body.list \
146
+ body.tnef \
147
+ data-before-name.list \
148
+ data-before-name.tnef \
149
+ garbage-at-end.list \
150
+ garbage-at-end.tnef \
151
+ long-filename.list \
152
+ long-filename.tnef \
153
+ missing-filenames.list \
154
+ missing-filenames.tnef \
155
+ multi-name-property.list \
156
+ multi-name-property.tnef \
157
+ one-file.list \
158
+ one-file.tnef \
159
+ rtf.list \
160
+ rtf.tnef \
161
+ triples.list \
162
+ triples.tnef \
163
+ two-files.list \
164
+ two-files.tnef
165
+
166
+ all: all-am
167
+
168
+ .SUFFIXES:
169
+ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
170
+ @for dep in $?; do \
171
+ case '$(am__configure_deps)' in \
172
+ *$$dep*) \
173
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
174
+ && { if test -f $@; then exit 0; else break; fi; }; \
175
+ exit 1;; \
176
+ esac; \
177
+ done; \
178
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/files/datafiles/Makefile'; \
179
+ $(am__cd) $(top_srcdir) && \
180
+ $(AUTOMAKE) --gnu tests/files/datafiles/Makefile
181
+ .PRECIOUS: Makefile
182
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
183
+ @case '$?' in \
184
+ *config.status*) \
185
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
186
+ *) \
187
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
188
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
189
+ esac;
190
+
191
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
192
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
193
+
194
+ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
195
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
196
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
197
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
198
+ $(am__aclocal_m4_deps):
199
+ tags: TAGS
200
+ TAGS:
201
+
202
+ ctags: CTAGS
203
+ CTAGS:
204
+
205
+
206
+ distdir: $(DISTFILES)
207
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
208
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
209
+ list='$(DISTFILES)'; \
210
+ dist_files=`for file in $$list; do echo $$file; done | \
211
+ sed -e "s|^$$srcdirstrip/||;t" \
212
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
213
+ case $$dist_files in \
214
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
215
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
216
+ sort -u` ;; \
217
+ esac; \
218
+ for file in $$dist_files; do \
219
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
220
+ if test -d $$d/$$file; then \
221
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
222
+ if test -d "$(distdir)/$$file"; then \
223
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
224
+ fi; \
225
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
226
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
227
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
228
+ fi; \
229
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
230
+ else \
231
+ test -f "$(distdir)/$$file" \
232
+ || cp -p $$d/$$file "$(distdir)/$$file" \
233
+ || exit 1; \
234
+ fi; \
235
+ done
236
+ check-am: all-am
237
+ check: check-am
238
+ all-am: Makefile
239
+ installdirs:
240
+ install: install-am
241
+ install-exec: install-exec-am
242
+ install-data: install-data-am
243
+ uninstall: uninstall-am
244
+
245
+ install-am: all-am
246
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
247
+
248
+ installcheck: installcheck-am
249
+ install-strip:
250
+ if test -z '$(STRIP)'; then \
251
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
252
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
253
+ install; \
254
+ else \
255
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
256
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
257
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
258
+ fi
259
+ mostlyclean-generic:
260
+
261
+ clean-generic:
262
+
263
+ distclean-generic:
264
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
265
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
266
+
267
+ maintainer-clean-generic:
268
+ @echo "This command is intended for maintainers to use"
269
+ @echo "it deletes files that may require special tools to rebuild."
270
+ clean: clean-am
271
+
272
+ clean-am: clean-generic mostlyclean-am
273
+
274
+ distclean: distclean-am
275
+ -rm -f Makefile
276
+ distclean-am: clean-am distclean-generic
277
+
278
+ dvi: dvi-am
279
+
280
+ dvi-am:
281
+
282
+ html: html-am
283
+
284
+ html-am:
285
+
286
+ info: info-am
287
+
288
+ info-am:
289
+
290
+ install-data-am:
291
+
292
+ install-dvi: install-dvi-am
293
+
294
+ install-dvi-am:
295
+
296
+ install-exec-am:
297
+
298
+ install-html: install-html-am
299
+
300
+ install-html-am:
301
+
302
+ install-info: install-info-am
303
+
304
+ install-info-am:
305
+
306
+ install-man:
307
+
308
+ install-pdf: install-pdf-am
309
+
310
+ install-pdf-am:
311
+
312
+ install-ps: install-ps-am
313
+
314
+ install-ps-am:
315
+
316
+ installcheck-am:
317
+
318
+ maintainer-clean: maintainer-clean-am
319
+ -rm -f Makefile
320
+ maintainer-clean-am: distclean-am maintainer-clean-generic
321
+
322
+ mostlyclean: mostlyclean-am
323
+
324
+ mostlyclean-am: mostlyclean-generic
325
+
326
+ pdf: pdf-am
327
+
328
+ pdf-am:
329
+
330
+ ps: ps-am
331
+
332
+ ps-am:
333
+
334
+ uninstall-am:
335
+
336
+ .MAKE: install-am install-strip
337
+
338
+ .PHONY: all all-am check check-am clean clean-generic distclean \
339
+ distclean-generic distdir dvi dvi-am html html-am info info-am \
340
+ install install-am install-data install-data-am install-dvi \
341
+ install-dvi-am install-exec install-exec-am install-html \
342
+ install-html-am install-info install-info-am install-man \
343
+ install-pdf install-pdf-am install-ps install-ps-am \
344
+ install-strip installcheck installcheck-am installdirs \
345
+ maintainer-clean maintainer-clean-generic mostlyclean \
346
+ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am
347
+
348
+
349
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
350
+ # Otherwise a system limit (for SysV at least) may be exceeded.
351
+ .NOEXPORT:
@@ -0,0 +1 @@
1
+ body-body.html
@@ -0,0 +1,4 @@
1
+ AUTOEXEC.BAT
2
+ CONFIG.SYS
3
+ boot.ini
4
+ data-before-name-body.rtf
@@ -0,0 +1 @@
1
+ long-filename-body.rtf
@@ -0,0 +1 @@
1
+ missing-filenames-body.rtf
@@ -0,0 +1 @@
1
+ AUTHORS
@@ -0,0 +1 @@
1
+ rtf-body.rtf