Files
RedBear-OS/recipes/tools/gettext/source/libtextstyle/gnulib-local/modules/ostream
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

44 lines
1.3 KiB
Plaintext

Description:
Abstract output stream data type.
Files:
lib/ostream.oo.h
lib/ostream.oo.c
Depends-on:
moo
configure.ac:
Makefile.am:
lib_SOURCES += ostream.c
# This is a Makefile rule that generates multiple files at once; see the
# automake documentation, node "Multiple Outputs", for details.
$(srcdir)/ostream.h : $(top_srcdir)/build-aux/moopp ostream.oo.h ostream.oo.c
$(top_srcdir)/build-aux/moopp $(MOOPPFLAGS) $(srcdir)/ostream.oo.c $(srcdir)/ostream.oo.h
$(srcdir)/ostream.c $(srcdir)/ostream.priv.h $(srcdir)/ostream.vt.h : ostream.h
@test -f $@ || { \
trap 'rm -rf ostream.lock' 1 2 13 15; \
if mkdir ostream.lock 2>/dev/null; then \
echo "$(top_srcdir)/build-aux/moopp $(MOOPPFLAGS) $(srcdir)/ostream.oo.c $(srcdir)/ostream.oo.h"; \
$(top_srcdir)/build-aux/moopp $(MOOPPFLAGS) $(srcdir)/ostream.oo.c $(srcdir)/ostream.oo.h; \
result=$$?; rm -rf ostream.lock; exit $$result; \
else \
while test -d ostream.lock; do sleep 1; done; \
test -f $(srcdir)/ostream.h; \
fi; \
}
BUILT_SOURCES += ostream.h ostream.c ostream.priv.h ostream.vt.h
MAINTAINERCLEANFILES += ostream.h ostream.c ostream.priv.h ostream.vt.h
EXTRA_DIST += ostream.h ostream.c ostream.priv.h ostream.vt.h
Include:
"ostream.h"
License:
GPL
Maintainer:
Bruno Haible