Files
RedBear-OS/recipes/wip/files/mc/source/tests/lib/widget/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

39 lines
629 B
Makefile

PACKAGE_STRING = "/lib/widget"
AM_CPPFLAGS = \
$(GLIB_CFLAGS) \
-I$(top_srcdir) \
-I$(top_srcdir)/lib/vfs \
@CHECK_CFLAGS@
LIBS = @CHECK_LIBS@ \
$(top_builddir)/lib/libmc.la
if ENABLE_MCLIB
LIBS += $(GLIB_LIBS)
endif
TESTS = \
complete_engine \
hotkey_equal \
group_init_destroy \
widget_find_by_id \
widget_make_global_local
check_PROGRAMS = $(TESTS)
complete_engine_SOURCES = \
complete_engine.c
hotkey_equal_SOURCES = \
hotkey_equal.c
group_init_destroy_SOURCES = \
group_init_destroy.c
widget_find_by_id_SOURCES = \
widget_find_by_id.c
widget_make_global_local_SOURCES = \
widget_make_global_local.c