# Local build options for apt-ostree # This file contains options for local development builds # It should not be committed to version control # Enable verbose output during build export DH_VERBOSE = 1 # Enable parallel builds export MAKEFLAGS = -j$(nproc) # Enable debug symbols in release builds export CARGO_PROFILE_RELEASE_DEBUG = 1 # Enable backtraces for better error reporting export RUST_BACKTRACE = 1 # Set log level for debugging export APT_OSTREE_LOG_LEVEL = debug # Enable additional Rust features for development export CARGO_FEATURES = dev-tools # Disable optimization for faster builds during development export CARGO_PROFILE_RELEASE_OPT_LEVEL = 0 # Enable incremental compilation export CARGO_INCREMENTAL = 1