Lines Matching +full:- +full:s
1 # Copyright (c) 2017-2026, Lawrence Livermore National Security, LLC and other CEED contributors.
2 # All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
4 # SPDX-License-Identifier: BSD-2-Clause
8 # Output using the 216-color rules mode
12 ansicolor = $(shell echo $(call last_path,$(1)) | cksum | cut -b1-2 | xargs -IS expr 2 \* S + 17)
13 emacs_out = @printf " %10s %s/%s\n" $(1) $(call rule_path,$(2)) $(call rule_file,$(2))
14 color_out = @if [ -t 1 ]; then \
15 printf " %10s \033[38;5;%d;1m%s\033[m/%s\n" \
18 printf " %10s %s\n" $(1) $(2); fi
22 # if V is set to non-nil, turn the verbose mode
25 # make-4.3 allows string literals like "#include" in variables, but older versions need "\#include". Specifically, the following code:
29 # works with make-4.3, but fails with previous versions: