tnef 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ext/tnef/ChangeLog +18 -0
- data/ext/tnef/Makefile.in +185 -132
- data/ext/tnef/NEWS +4 -1
- data/ext/tnef/aclocal.m4 +440 -266
- data/ext/tnef/autom4te.cache/output.0 +7001 -0
- data/ext/tnef/autom4te.cache/output.1 +7001 -0
- data/ext/tnef/autom4te.cache/requests +159 -0
- data/ext/tnef/autom4te.cache/traces.0 +545 -0
- data/ext/tnef/autom4te.cache/traces.1 +1036 -0
- data/ext/tnef/compile +347 -0
- data/ext/tnef/config.log +971 -0
- data/ext/tnef/configure +380 -194
- data/ext/tnef/configure.in +1 -1
- data/ext/tnef/contrib/evolution.helper +43 -0
- data/ext/tnef/contrib/evolution.helper.README +11 -0
- data/ext/tnef/contrib/tnef-alpine.perl +91 -0
- data/ext/tnef/contrib/tnef-alpine.perl.README +10 -0
- data/ext/tnef/doc/Makefile +659 -0
- data/ext/tnef/doc/Makefile.in +171 -135
- data/ext/tnef/doc/tnef.1 +185 -0
- data/ext/tnef/doc/tnef.1.in +34 -32
- data/ext/tnef/doc/www/Makefile +585 -0
- data/ext/tnef/doc/www/Makefile.in +158 -115
- data/ext/tnef/doc/www/cgi-bin/Makefile +405 -0
- data/ext/tnef/doc/www/cgi-bin/Makefile.in +83 -18
- data/ext/tnef/doc/www/htdocs/Makefile +405 -0
- data/ext/tnef/doc/www/htdocs/Makefile.in +83 -18
- data/ext/tnef/doc/www/htdocs/index.html +51 -0
- data/ext/tnef/doc/www/htdocs/style.css +13 -0
- data/ext/tnef/src/Makefile.in +193 -135
- data/ext/tnef/src/replace/Makefile.in +148 -55
- data/ext/tnef/src/tnef.c +10 -8
- data/ext/tnef/test-driver +127 -0
- data/ext/tnef/tests/Makefile.in +158 -115
- data/ext/tnef/tests/cmdline/Attic/mime-types.baseline +3 -0
- data/ext/tnef/tests/cmdline/Attic/mime-types.test +11 -0
- data/ext/tnef/tests/cmdline/Makefile.in +441 -110
- data/ext/tnef/tests/cmdline/body-test.html.baseline +95 -95
- data/ext/tnef/tests/cmdline/body.baseline +2 -2
- data/ext/tnef/tests/cmdline/interactive.baseline +0 -0
- data/ext/tnef/tests/cmdline/message.html.baseline +95 -95
- data/ext/tnef/tests/cmdline/version.baseline +2 -2
- data/ext/tnef/tests/files/Makefile.in +515 -205
- data/ext/tnef/tests/files/baselines/Makefile.in +83 -18
- data/ext/tnef/tests/files/datafiles/Makefile.in +83 -18
- data/lib/tnef/version.rb +1 -1
- metadata +34 -18
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 98a2377e570b1bbdbc0e963f615536a9458339ea
|
4
|
+
data.tar.gz: 2797d351be3b2165078a25de7dee9c7d30b07f32
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fd370d1e1b99c7969c1778f520d7aa1d1bf32d5931aa195e8f6e7f2378ff428f0bdfc6b46766f570902499a6efa9626352600e1606e45c26b3797cce23a4c820
|
7
|
+
data.tar.gz: e31f7d338288390a612414f70b3ebb1b29bf6c98cab92790531ca0b590d5e3c747a787b896e4e785b94832ade0d4f4ce6918f5bb179612059bb98026429d2703
|
data/ext/tnef/ChangeLog
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
+
2013-11-04 verdammelt <verdammelt@gmail.com>
|
2
|
+
* src/tnef.c:
|
3
|
+
free_bodies needs to be defined bofore use - C99
|
4
|
+
* .gitignore:
|
5
|
+
new testing script from automake generates *.log and *.trs files
|
6
|
+
which need to be ignored.
|
7
|
+
* compile, test-driver:
|
8
|
+
adding these missing automake files.
|
9
|
+
|
10
|
+
2013-10-22 Anthony J. Bently <anthony@cathet.us>
|
11
|
+
* doc/tnef.1.in:
|
12
|
+
- Remove some redundant macros (empty paragraphs, etc)
|
13
|
+
- Properly format the title
|
14
|
+
- Correct the "-*- nroff -*-" line (was a mistyped comment)
|
15
|
+
- Fix formatting issues with .IR
|
16
|
+
- Start new sentences on a new line. (This is a standard so that
|
17
|
+
troff formats inter-sentences properly.)
|
18
|
+
|
1
19
|
2012-02-29 Engelke Eschner <tekai@gmx.li>
|
2
20
|
* src/file.c, src/main.c, src/mapi_attr.c, src/tnef.c
|
3
21
|
Free more memory
|
data/ext/tnef/Makefile.in
CHANGED
@@ -1,9 +1,8 @@
|
|
1
|
-
# Makefile.in generated by automake 1.
|
1
|
+
# Makefile.in generated by automake 1.14 from Makefile.am.
|
2
2
|
# @configure_input@
|
3
3
|
|
4
|
-
# Copyright (C) 1994
|
5
|
-
|
6
|
-
# Foundation, Inc.
|
4
|
+
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
5
|
+
|
7
6
|
# This Makefile.in is free software; the Free Software Foundation
|
8
7
|
# gives unlimited permission to copy and/or distribute it,
|
9
8
|
# with or without modifications, as long as this notice is preserved.
|
@@ -15,6 +14,51 @@
|
|
15
14
|
|
16
15
|
@SET_MAKE@
|
17
16
|
VPATH = @srcdir@
|
17
|
+
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
18
|
+
am__make_running_with_option = \
|
19
|
+
case $${target_option-} in \
|
20
|
+
?) ;; \
|
21
|
+
*) echo "am__make_running_with_option: internal error: invalid" \
|
22
|
+
"target option '$${target_option-}' specified" >&2; \
|
23
|
+
exit 1;; \
|
24
|
+
esac; \
|
25
|
+
has_opt=no; \
|
26
|
+
sane_makeflags=$$MAKEFLAGS; \
|
27
|
+
if $(am__is_gnu_make); then \
|
28
|
+
sane_makeflags=$$MFLAGS; \
|
29
|
+
else \
|
30
|
+
case $$MAKEFLAGS in \
|
31
|
+
*\\[\ \ ]*) \
|
32
|
+
bs=\\; \
|
33
|
+
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
34
|
+
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
35
|
+
esac; \
|
36
|
+
fi; \
|
37
|
+
skip_next=no; \
|
38
|
+
strip_trailopt () \
|
39
|
+
{ \
|
40
|
+
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
41
|
+
}; \
|
42
|
+
for flg in $$sane_makeflags; do \
|
43
|
+
test $$skip_next = yes && { skip_next=no; continue; }; \
|
44
|
+
case $$flg in \
|
45
|
+
*=*|--*) continue;; \
|
46
|
+
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
47
|
+
-*I?*) strip_trailopt 'I';; \
|
48
|
+
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
49
|
+
-*O?*) strip_trailopt 'O';; \
|
50
|
+
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
51
|
+
-*l?*) strip_trailopt 'l';; \
|
52
|
+
-[dEDm]) skip_next=yes;; \
|
53
|
+
-[JT]) skip_next=yes;; \
|
54
|
+
esac; \
|
55
|
+
case $$flg in \
|
56
|
+
*$$target_option*) has_opt=yes; break;; \
|
57
|
+
esac; \
|
58
|
+
done; \
|
59
|
+
test $$has_opt = yes
|
60
|
+
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
61
|
+
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
18
62
|
pkgdatadir = $(datadir)/@PACKAGE@
|
19
63
|
pkgincludedir = $(includedir)/@PACKAGE@
|
20
64
|
pkglibdir = $(libdir)/@PACKAGE@
|
@@ -32,11 +76,11 @@ NORMAL_UNINSTALL = :
|
|
32
76
|
PRE_UNINSTALL = :
|
33
77
|
POST_UNINSTALL = :
|
34
78
|
subdir = .
|
35
|
-
DIST_COMMON = README
|
36
|
-
$(srcdir)/Makefile.
|
37
|
-
$(
|
38
|
-
|
39
|
-
|
79
|
+
DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
|
80
|
+
$(srcdir)/Makefile.in $(srcdir)/Makefile.am \
|
81
|
+
$(top_srcdir)/configure $(am__configure_deps) mkinstalldirs \
|
82
|
+
$(srcdir)/BUGS.in $(srcdir)/tnef.spec.in COPYING THANKS TODO \
|
83
|
+
compile depcomp install-sh missing
|
40
84
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
41
85
|
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
42
86
|
$(top_srcdir)/configure.in
|
@@ -48,22 +92,61 @@ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
|
48
92
|
CONFIG_HEADER = $(top_builddir)/src/config.h
|
49
93
|
CONFIG_CLEAN_FILES = BUGS tnef.spec
|
50
94
|
CONFIG_CLEAN_VPATH_FILES =
|
95
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
96
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
97
|
+
am__v_P_0 = false
|
98
|
+
am__v_P_1 = :
|
99
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
100
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
101
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
102
|
+
am__v_GEN_1 =
|
103
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
104
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
105
|
+
am__v_at_0 = @
|
106
|
+
am__v_at_1 =
|
51
107
|
SOURCES =
|
52
108
|
DIST_SOURCES =
|
53
|
-
RECURSIVE_TARGETS = all-recursive check-recursive
|
54
|
-
|
55
|
-
install-
|
56
|
-
install-
|
57
|
-
install-
|
58
|
-
|
59
|
-
|
109
|
+
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
|
110
|
+
ctags-recursive dvi-recursive html-recursive info-recursive \
|
111
|
+
install-data-recursive install-dvi-recursive \
|
112
|
+
install-exec-recursive install-html-recursive \
|
113
|
+
install-info-recursive install-pdf-recursive \
|
114
|
+
install-ps-recursive install-recursive installcheck-recursive \
|
115
|
+
installdirs-recursive pdf-recursive ps-recursive \
|
116
|
+
tags-recursive uninstall-recursive
|
117
|
+
am__can_run_installinfo = \
|
118
|
+
case $$AM_UPDATE_INFO_DIR in \
|
119
|
+
n|no|NO) false;; \
|
120
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
121
|
+
esac
|
60
122
|
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
61
123
|
distclean-recursive maintainer-clean-recursive
|
62
|
-
|
63
|
-
|
64
|
-
|
124
|
+
am__recursive_targets = \
|
125
|
+
$(RECURSIVE_TARGETS) \
|
126
|
+
$(RECURSIVE_CLEAN_TARGETS) \
|
127
|
+
$(am__extra_recursive_targets)
|
128
|
+
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
129
|
+
cscope distdir dist dist-all distcheck
|
130
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
131
|
+
# Read a list of newline-separated strings from the standard input,
|
132
|
+
# and print each of them once, without duplicates. Input order is
|
133
|
+
# *not* preserved.
|
134
|
+
am__uniquify_input = $(AWK) '\
|
135
|
+
BEGIN { nonempty = 0; } \
|
136
|
+
{ items[$$0] = 1; nonempty = 1; } \
|
137
|
+
END { if (nonempty) { for (i in items) print i; }; } \
|
138
|
+
'
|
139
|
+
# Make sure the list of sources is unique. This is necessary because,
|
140
|
+
# e.g., the same source file might be shared among _SOURCES variables
|
141
|
+
# for different programs/libraries.
|
142
|
+
am__define_uniq_tagged_files = \
|
143
|
+
list='$(am__tagged_files)'; \
|
144
|
+
unique=`for i in $$list; do \
|
145
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
146
|
+
done | $(am__uniquify_input)`
|
65
147
|
ETAGS = etags
|
66
148
|
CTAGS = ctags
|
149
|
+
CSCOPE = cscope
|
67
150
|
DIST_SUBDIRS = $(SUBDIRS)
|
68
151
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
69
152
|
distdir = $(PACKAGE)-$(VERSION)
|
@@ -74,6 +157,7 @@ am__remove_distdir = \
|
|
74
157
|
&& rm -rf "$(distdir)" \
|
75
158
|
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
76
159
|
else :; fi
|
160
|
+
am__post_remove_distdir = $(am__remove_distdir)
|
77
161
|
am__relativize = \
|
78
162
|
dir0=`pwd`; \
|
79
163
|
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
@@ -101,12 +185,14 @@ am__relativize = \
|
|
101
185
|
reldir="$$dir2"
|
102
186
|
DIST_ARCHIVES = $(distdir).tar.gz
|
103
187
|
GZIP_ENV = --best
|
188
|
+
DIST_TARGETS = dist-gzip
|
104
189
|
distuninstallcheck_listfiles = find . -type f -print
|
105
190
|
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
106
191
|
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
107
192
|
distcleancheck_listfiles = find . -type f -print
|
108
193
|
ACLOCAL = @ACLOCAL@
|
109
194
|
AMTAR = @AMTAR@
|
195
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
110
196
|
AUTOCONF = @AUTOCONF@
|
111
197
|
AUTOHEADER = @AUTOHEADER@
|
112
198
|
AUTOMAKE = @AUTOMAKE@
|
@@ -244,22 +330,25 @@ tnef.spec: $(top_builddir)/config.status $(srcdir)/tnef.spec.in
|
|
244
330
|
cd $(top_builddir) && $(SHELL) ./config.status $@
|
245
331
|
|
246
332
|
# This directory's subdirectories are mostly independent; you can cd
|
247
|
-
# into them and run
|
248
|
-
# To change the values of
|
249
|
-
# (1) if the variable is set in
|
250
|
-
# (which will cause the Makefiles to be regenerated when you run
|
251
|
-
# (2) otherwise, pass the desired values on the
|
252
|
-
$(
|
253
|
-
@fail
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
done; \
|
333
|
+
# into them and run 'make' without going through this Makefile.
|
334
|
+
# To change the values of 'make' variables: instead of editing Makefiles,
|
335
|
+
# (1) if the variable is set in 'config.status', edit 'config.status'
|
336
|
+
# (which will cause the Makefiles to be regenerated when you run 'make');
|
337
|
+
# (2) otherwise, pass the desired values on the 'make' command line.
|
338
|
+
$(am__recursive_targets):
|
339
|
+
@fail=; \
|
340
|
+
if $(am__make_keepgoing); then \
|
341
|
+
failcom='fail=yes'; \
|
342
|
+
else \
|
343
|
+
failcom='exit 1'; \
|
344
|
+
fi; \
|
260
345
|
dot_seen=no; \
|
261
346
|
target=`echo $@ | sed s/-recursive//`; \
|
262
|
-
|
347
|
+
case "$@" in \
|
348
|
+
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
349
|
+
*) list='$(SUBDIRS)' ;; \
|
350
|
+
esac; \
|
351
|
+
for subdir in $$list; do \
|
263
352
|
echo "Making $$target in $$subdir"; \
|
264
353
|
if test "$$subdir" = "."; then \
|
265
354
|
dot_seen=yes; \
|
@@ -274,57 +363,12 @@ $(RECURSIVE_TARGETS):
|
|
274
363
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
275
364
|
fi; test -z "$$fail"
|
276
365
|
|
277
|
-
$(
|
278
|
-
|
279
|
-
|
280
|
-
|
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
|
366
|
+
ID: $(am__tagged_files)
|
367
|
+
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
368
|
+
tags: tags-recursive
|
369
|
+
TAGS: tags
|
315
370
|
|
316
|
-
|
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)
|
371
|
+
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
328
372
|
set x; \
|
329
373
|
here=`pwd`; \
|
330
374
|
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
@@ -340,12 +384,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
340
384
|
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
341
385
|
fi; \
|
342
386
|
done; \
|
343
|
-
|
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; }; }'`; \
|
387
|
+
$(am__define_uniq_tagged_files); \
|
349
388
|
shift; \
|
350
389
|
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
351
390
|
test -n "$$unique" || unique=$$empty_fix; \
|
@@ -357,15 +396,11 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
357
396
|
$$unique; \
|
358
397
|
fi; \
|
359
398
|
fi
|
360
|
-
ctags:
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
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; }; }'`; \
|
399
|
+
ctags: ctags-recursive
|
400
|
+
|
401
|
+
CTAGS: ctags
|
402
|
+
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
403
|
+
$(am__define_uniq_tagged_files); \
|
369
404
|
test -z "$(CTAGS_ARGS)$$unique" \
|
370
405
|
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
371
406
|
$$unique
|
@@ -374,9 +409,31 @@ GTAGS:
|
|
374
409
|
here=`$(am__cd) $(top_builddir) && pwd` \
|
375
410
|
&& $(am__cd) $(top_srcdir) \
|
376
411
|
&& gtags -i $(GTAGS_ARGS) "$$here"
|
412
|
+
cscope: cscope.files
|
413
|
+
test ! -s cscope.files \
|
414
|
+
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
|
415
|
+
clean-cscope:
|
416
|
+
-rm -f cscope.files
|
417
|
+
cscope.files: clean-cscope cscopelist
|
418
|
+
cscopelist: cscopelist-recursive
|
419
|
+
|
420
|
+
cscopelist-am: $(am__tagged_files)
|
421
|
+
list='$(am__tagged_files)'; \
|
422
|
+
case "$(srcdir)" in \
|
423
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
424
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
425
|
+
esac; \
|
426
|
+
for i in $$list; do \
|
427
|
+
if test -f "$$i"; then \
|
428
|
+
echo "$(subdir)/$$i"; \
|
429
|
+
else \
|
430
|
+
echo "$$sdir/$$i"; \
|
431
|
+
fi; \
|
432
|
+
done >> $(top_builddir)/cscope.files
|
377
433
|
|
378
434
|
distclean-tags:
|
379
435
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
436
|
+
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
380
437
|
|
381
438
|
distdir: $(DISTFILES)
|
382
439
|
$(am__remove_distdir)
|
@@ -412,13 +469,10 @@ distdir: $(DISTFILES)
|
|
412
469
|
done
|
413
470
|
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
414
471
|
if test "$$subdir" = .; then :; else \
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
done
|
420
|
-
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
421
|
-
if test "$$subdir" = .; then :; else \
|
472
|
+
$(am__make_dryrun) \
|
473
|
+
|| test -d "$(distdir)/$$subdir" \
|
474
|
+
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
475
|
+
|| exit 1; \
|
422
476
|
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
423
477
|
$(am__relativize); \
|
424
478
|
new_distdir=$$reldir; \
|
@@ -447,40 +501,42 @@ distdir: $(DISTFILES)
|
|
447
501
|
|| chmod -R a+r "$(distdir)"
|
448
502
|
dist-gzip: distdir
|
449
503
|
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
450
|
-
$(
|
504
|
+
$(am__post_remove_distdir)
|
451
505
|
|
452
506
|
dist-bzip2: distdir
|
453
507
|
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
454
|
-
$(
|
508
|
+
$(am__post_remove_distdir)
|
455
509
|
|
456
510
|
dist-lzip: distdir
|
457
511
|
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
458
|
-
$(
|
459
|
-
|
460
|
-
dist-lzma: distdir
|
461
|
-
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
|
462
|
-
$(am__remove_distdir)
|
512
|
+
$(am__post_remove_distdir)
|
463
513
|
|
464
514
|
dist-xz: distdir
|
465
515
|
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
466
|
-
$(
|
516
|
+
$(am__post_remove_distdir)
|
467
517
|
|
468
518
|
dist-tarZ: distdir
|
519
|
+
@echo WARNING: "Support for shar distribution archives is" \
|
520
|
+
"deprecated." >&2
|
521
|
+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
469
522
|
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
470
|
-
$(
|
523
|
+
$(am__post_remove_distdir)
|
471
524
|
|
472
525
|
dist-shar: distdir
|
526
|
+
@echo WARNING: "Support for distribution archives compressed with" \
|
527
|
+
"legacy program 'compress' is deprecated." >&2
|
528
|
+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
473
529
|
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
474
|
-
$(
|
530
|
+
$(am__post_remove_distdir)
|
475
531
|
|
476
532
|
dist-zip: distdir
|
477
533
|
-rm -f $(distdir).zip
|
478
534
|
zip -rq $(distdir).zip $(distdir)
|
479
|
-
$(
|
535
|
+
$(am__post_remove_distdir)
|
480
536
|
|
481
|
-
dist dist-all:
|
482
|
-
|
483
|
-
$(
|
537
|
+
dist dist-all:
|
538
|
+
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
|
539
|
+
$(am__post_remove_distdir)
|
484
540
|
|
485
541
|
# This target untars the dist file and tries a VPATH configuration. Then
|
486
542
|
# it guarantees that the distribution is self-contained by making another
|
@@ -491,8 +547,6 @@ distcheck: dist
|
|
491
547
|
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
492
548
|
*.tar.bz2*) \
|
493
549
|
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
494
|
-
*.tar.lzma*) \
|
495
|
-
lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
|
496
550
|
*.tar.lz*) \
|
497
551
|
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
498
552
|
*.tar.xz*) \
|
@@ -504,9 +558,9 @@ distcheck: dist
|
|
504
558
|
*.zip*) \
|
505
559
|
unzip $(distdir).zip ;;\
|
506
560
|
esac
|
507
|
-
chmod -R a-w $(distdir)
|
508
|
-
|
509
|
-
mkdir $(distdir)/_inst
|
561
|
+
chmod -R a-w $(distdir)
|
562
|
+
chmod u+w $(distdir)
|
563
|
+
mkdir $(distdir)/_build $(distdir)/_inst
|
510
564
|
chmod a-w $(distdir)
|
511
565
|
test -d $(distdir)/_build || exit 0; \
|
512
566
|
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
@@ -538,7 +592,7 @@ distcheck: dist
|
|
538
592
|
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
539
593
|
&& cd "$$am__cwd" \
|
540
594
|
|| exit 1
|
541
|
-
$(
|
595
|
+
$(am__post_remove_distdir)
|
542
596
|
@(echo "$(distdir) archives ready for distribution: "; \
|
543
597
|
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
544
598
|
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
@@ -672,13 +726,12 @@ ps-am:
|
|
672
726
|
|
673
727
|
uninstall-am:
|
674
728
|
|
675
|
-
.MAKE: $(
|
676
|
-
install-am install-strip tags-recursive
|
729
|
+
.MAKE: $(am__recursive_targets) install-am install-strip
|
677
730
|
|
678
|
-
.PHONY: $(
|
679
|
-
|
680
|
-
ctags ctags-
|
681
|
-
dist-
|
731
|
+
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
732
|
+
am--refresh check check-am clean clean-cscope clean-generic \
|
733
|
+
cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \
|
734
|
+
dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
|
682
735
|
distcheck distclean distclean-generic distclean-tags \
|
683
736
|
distcleancheck distdir distuninstallcheck dvi dvi-am html \
|
684
737
|
html-am info info-am install install-am install-data \
|
@@ -688,7 +741,7 @@ uninstall-am:
|
|
688
741
|
install-ps install-ps-am install-strip installcheck \
|
689
742
|
installcheck-am installdirs installdirs-am maintainer-clean \
|
690
743
|
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
|
691
|
-
pdf-am ps ps-am tags tags-
|
744
|
+
pdf-am ps ps-am tags tags-am uninstall uninstall-am
|
692
745
|
|
693
746
|
|
694
747
|
web-build web-test web-push:
|