Files
RedBear-OS/recipes/wip/files/mc/source/lib/tty/Makefile.am
T
vasilito facf0c92e0 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

37 lines
632 B
Makefile

noinst_LTLIBRARIES = libmctty.la
if USE_SCREEN_SLANG
TTY_SCREEN_SRC = \
color-slang.c color-slang.h \
tty-slang.c tty-slang.h
else
TTY_SCREEN_SRC = \
color-ncurses.c \
tty-ncurses.c tty-ncurses.h
endif
TTY_SRC = \
color-internal.c color-internal.h \
color.c color.h \
key.c key.h keyxdef.c \
mouse.c mouse.h \
tty-internal.c tty-internal.h \
tty.c tty.h \
win.c win.h
if HAVE_TEXTMODE_X11_SUPPORT
TTY_SRC += x11conn.c x11conn.h
endif
libmctty_la_SOURCES = $(TTY_SRC) $(TTY_SCREEN_SRC)
AM_CPPFLAGS = -I$(top_srcdir)
if HAVE_GMODULE
AM_CPPFLAGS += $(GMODULE_CFLAGS)
else
AM_CPPFLAGS += $(GLIB_CFLAGS)
endif