1Description: 2Output stream for attributed text, producing ANSI escape sequences. 3 4Files: 5lib/term-ostream.oo.h 6lib/term-ostream.oo.c 7m4/term-ostream.m4 8 9Depends-on: 10ostream 11term-style-control 12error 13stdlib 14full-write 15fsync 16gettext-h 17gettimeofday 18get_ppid_of 19get_progname_of 20stdint 21terminfo-h 22xalloc 23xgethostname 24xsize 25msvc-nothrow 26 27configure.ac: 28gl_TERM_OSTREAM 29 30Makefile.am: 31lib_SOURCES += term-ostream.c 32# This is a Makefile rule that generates multiple files at once; see the 33# automake documentation, node "Multiple Outputs", for details. 34$(srcdir)/term-ostream.h : $(top_srcdir)/build-aux/moopp term-ostream.oo.h term-ostream.oo.c ostream.oo.h 35 $(top_srcdir)/build-aux/moopp $(MOOPPFLAGS) $(srcdir)/term-ostream.oo.c $(srcdir)/term-ostream.oo.h $(srcdir)/ostream.oo.h 36$(srcdir)/term-ostream.c $(srcdir)/term_ostream.priv.h $(srcdir)/term_ostream.vt.h : term-ostream.h 37 @test -f $@ || { \ 38 trap 'rm -rf term-ostream.lock' 1 2 13 15; \ 39 if mkdir term-ostream.lock 2>/dev/null; then \ 40 echo "$(top_srcdir)/build-aux/moopp $(MOOPPFLAGS) $(srcdir)/term-ostream.oo.c $(srcdir)/term-ostream.oo.h $(srcdir)/ostream.oo.h"; \ 41 $(top_srcdir)/build-aux/moopp $(MOOPPFLAGS) $(srcdir)/term-ostream.oo.c $(srcdir)/term-ostream.oo.h $(srcdir)/ostream.oo.h; \ 42 result=$$?; rm -rf term-ostream.lock; exit $$result; \ 43 else \ 44 while test -d term-ostream.lock; do sleep 1; done; \ 45 test -f $(srcdir)/term-ostream.h; \ 46 fi; \ 47 } 48BUILT_SOURCES += term-ostream.h term-ostream.c term_ostream.priv.h term_ostream.vt.h 49MAINTAINERCLEANFILES += term-ostream.h term-ostream.c term_ostream.priv.h term_ostream.vt.h 50EXTRA_DIST += term-ostream.h term-ostream.c term_ostream.priv.h term_ostream.vt.h 51 52Include: 53"term-ostream.h" 54 55License: 56GPL 57 58Maintainer: 59Bruno Haible 60 61