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

102 lines
1.5 KiB
Makefile

PACKAGE_STRING = "/lib/vfs"
AM_CPPFLAGS = \
-DTEST_SHARE_DIR=\"$(abs_builddir)\" \
$(GLIB_CFLAGS) \
-I$(top_srcdir) \
-I$(top_srcdir)/lib/vfs \
@CHECK_CFLAGS@
EXTRA_DIST = mc.charsets.in
if CHARSET
CLEANFILES = mc.charsets
endif
LIBS = @CHECK_LIBS@ \
$(top_builddir)/lib/libmc.la
if ENABLE_MCLIB
LIBS += $(GLIB_LIBS) \
@E2P_LIBS@
endif
TESTS = \
canonicalize_pathname \
current_dir \
path_cmp \
path_len \
path_manipulations \
path_serialize \
relative_cd \
tempdir \
vfs_adjust_stat \
vfs_parse_ls_lga \
vfs_path_from_str_flags \
vfs_path_string_convert \
vfs_prefix_to_class \
vfs_setup_cwd \
vfs_split \
vfs_s_get_path
if CHARSET
TESTS += path_recode \
vfs_get_encoding
endif
check_PROGRAMS = $(TESTS)
canonicalize_pathname_SOURCES = \
canonicalize_pathname.c
current_dir_SOURCES = \
current_dir.c
path_cmp_SOURCES = \
path_cmp.c
path_len_SOURCES = \
path_len.c
path_manipulations_SOURCES = \
path_manipulations.c
path_recode_SOURCES = \
path_recode.c
path_serialize_SOURCES = \
path_serialize.c
relative_cd_SOURCES = \
relative_cd.c
tempdir_SOURCES = \
tempdir.c
vfs_adjust_stat_SOURCES = \
vfs_adjust_stat.c
vfs_get_encoding_SOURCES = \
vfs_get_encoding.c
vfs_setup_cwd_SOURCES = \
vfs_setup_cwd.c
vfs_split_SOURCES = \
vfs_split.c
vfs_parse_ls_lga_SOURCES = \
vfs_parse_ls_lga.c
vfs_prefix_to_class_SOURCES = \
vfs_prefix_to_class.c
vfs_path_from_str_flags_SOURCES = \
vfs_path_from_str_flags.c
vfs_path_string_convert_SOURCES = \
vfs_path_string_convert.c
vfs_s_get_path_SOURCES = \
vfs_s_get_path.c