blob: 887b05327c9b4aa9f902452d843cdcaf9d8378fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
Description:
Output stream that converts the output to another encoding.
Files:
lib/iconv-ostream.oo.h
lib/iconv-ostream.oo.c
Depends-on:
ostream
c-strcase
error
exit
gettext
iconv
xalloc
configure.ac:
Makefile.am:
lib_SOURCES += iconv-ostream.c
# This is a Makefile rule that generates multiple files at once; see the
# automake documentation, node "Multiple Outputs", for details.
iconv-ostream.h : $(top_srcdir)/build-aux/moopp iconv-ostream.oo.h iconv-ostream.oo.c ostream.oo.h
$(top_srcdir)/build-aux/moopp $(srcdir)/iconv-ostream.oo.c $(srcdir)/iconv-ostream.oo.h $(srcdir)/ostream.oo.h
iconv-ostream.c iconv_ostream.priv.h iconv_ostream.vt.h : iconv-ostream.h
@test -f $@ || { \
trap 'rm -rf iconv-ostream.lock' 1 2 13 15; \
if mkdir iconv-ostream.lock 2>/dev/null; then \
echo "$(top_srcdir)/build-aux/moopp $(srcdir)/iconv-ostream.oo.c $(srcdir)/iconv-ostream.oo.h $(srcdir)/ostream.oo.h"; \
$(top_srcdir)/build-aux/moopp $(srcdir)/iconv-ostream.oo.c $(srcdir)/iconv-ostream.oo.h $(srcdir)/ostream.oo.h; \
result=$$?; rm -rf iconv-ostream.lock; exit $$result; \
else \
while test -d iconv-ostream.lock; do sleep 1; done; \
test -f $(srcdir)/iconv-ostream.h; \
fi; \
}
BUILT_SOURCES += iconv-ostream.h iconv-ostream.c iconv_ostream.priv.h iconv_ostream.vt.h
MAINTAINERCLEANFILES += iconv-ostream.h iconv-ostream.c iconv_ostream.priv.h iconv_ostream.vt.h
EXTRA_DIST += iconv-ostream.h iconv-ostream.c iconv_ostream.priv.h iconv_ostream.vt.h
Include:
"iconv-ostream.h"
License:
GPL
Maintainer:
Bruno Haible
|