blob: 7553900b169ff8655fab5274ae4edf4785e7b084 (
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
|
Description:
Output stream referring to a file descriptor.
Files:
lib/fd-ostream.oo.h
lib/fd-ostream.oo.c
Depends-on:
ostream
error
exit
full-write
gettext
xalloc
configure.ac:
Makefile.am:
lib_SOURCES += fd-ostream.c
# This is a Makefile rule that generates multiple files at once; see the
# automake documentation, node "Multiple Outputs", for details.
fd-ostream.h : $(top_srcdir)/build-aux/moopp fd-ostream.oo.h fd-ostream.oo.c ostream.oo.h
$(top_srcdir)/build-aux/moopp $(srcdir)/fd-ostream.oo.c $(srcdir)/fd-ostream.oo.h $(srcdir)/ostream.oo.h
fd-ostream.c fd_ostream.priv.h fd_ostream.vt.h : fd-ostream.h
@test -f $@ || { \
trap 'rm -rf fd-ostream.lock' 1 2 13 15; \
if mkdir fd-ostream.lock 2>/dev/null; then \
echo "$(top_srcdir)/build-aux/moopp $(srcdir)/fd-ostream.oo.c $(srcdir)/fd-ostream.oo.h $(srcdir)/ostream.oo.h"; \
$(top_srcdir)/build-aux/moopp $(srcdir)/fd-ostream.oo.c $(srcdir)/fd-ostream.oo.h $(srcdir)/ostream.oo.h; \
result=$$?; rm -rf fd-ostream.lock; exit $$result; \
else \
while test -d fd-ostream.lock; do sleep 1; done; \
test -f $(srcdir)/fd-ostream.h; \
fi; \
}
BUILT_SOURCES += fd-ostream.h fd-ostream.c fd_ostream.priv.h fd_ostream.vt.h
MAINTAINERCLEANFILES += fd-ostream.h fd-ostream.c fd_ostream.priv.h fd_ostream.vt.h
EXTRA_DIST += fd-ostream.h fd-ostream.c fd_ostream.priv.h fd_ostream.vt.h
Include:
"fd-ostream.h"
License:
GPL
Maintainer:
Bruno Haible
|