bookmarkfs/tests/atlocal.in
CismonX 296b85cbe9
build: refactor feature variable exporting
- Remove EX_AMCOND() and EX_FEAT_EXPORT(), instead add flags to
  EX_FEAT() to check whether a feature should be exported.
- Only mark a feature to be exported with AM_CONDITIONAL() when
  it is checked within either */Makefile.am or tests/atlocal.in.
- Only add a feature to test/atlocal.in when it is checked by
  ATX_FEAT_*().
- Move feature "bookmarkfs-util" after features that may enable it,
  so that its enable status can be correctly displayed.
2025-07-12 12:52:28 +08:00

25 lines
1 KiB
Text

#
# Copyright (C) 2025 CismonX <admin@cismon.net>
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty, provided the copyright notice and
# this notice are preserved. This file is offered as-is, without any warranty.
#
# -- Paths --
top_builddir="@abs_top_builddir@"
buildsrcdir="$top_builddir/src"
# -- Features --
@BOOKMARKFS_UTIL_TRUE@ feat_bookmarkfs_util=y
@BOOKMARKCTL_TRUE@ feat_bookmarkctl=y
@BOOKMARKFS_FSCK_TRUE@ feat_bookmarkfs_fsck=y
@BOOKMARKFS_MKFS_TRUE@ feat_bookmarkfs_mkfs=y
@BOOKMARKFS_MOUNT_TRUE@ feat_bookmarkfs_mount=y
@SANDBOX_TRUE@ feat_sandbox=y
@BACKEND_FIREFOX_TRUE@ feat_backend_firefox=y
@BACKEND_FIREFOX_WRITE_TRUE@ feat_backend_firefox_write=y
@BACKEND_CHROMIUM_TRUE@ feat_backend_chromium=y
@BACKEND_CHROMIUM_WRITE_TRUE@ feat_backend_chromium_write=y
@INTERACTIVE_FSCK_TRUE@ feat_interactive_fsck=y
@FSCK_HANDLER_TCL_TRUE@ feat_fsck_handler_tcl=y