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