facf0c92e0
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.
39 lines
629 B
Makefile
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
|