aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/Makefile
diff options
context:
space:
mode:
authorSamuel Lidén Borell <samuel@kodafritt.se>2026-01-26 21:33:20 +0100
committerSamuel Lidén Borell <samuel@kodafritt.se>2026-01-26 21:33:20 +0100
commit4019104777ce57b76b553f46e48169ffa9955cec (patch)
treeff4f5ac1517c96e83119b46e2919622056329a25 /bootstrap/Makefile
parentf69238c5187a834fac9ea6647d8a9101a3ac6e76 (diff)
downloadslul-try2-main.tar.gz
slul-try2-main.zip
bootstrap: Normalize whitespace in MakefileHEADmain
Diffstat (limited to 'bootstrap/Makefile')
-rw-r--r--bootstrap/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/bootstrap/Makefile b/bootstrap/Makefile
index c5fb7a2..0a27f36 100644
--- a/bootstrap/Makefile
+++ b/bootstrap/Makefile
@@ -53,9 +53,9 @@ GCC_ANALYZER_FLAGS = -Wno-analyzer-malloc-leak
# - unusedFunction
# - missingInclude
CPPCHECK_FLAGS = \
- -q --enable=warning,performance,portability \
- --check-level=exhaustive --inconclusive \
- -D__STDC_VERSION__=202311 --error-exitcode=1
+ -q --enable=warning,performance,portability \
+ --check-level=exhaustive --inconclusive \
+ -D__STDC_VERSION__=202311 --error-exitcode=1
# sparse gives some false positives in system headers for me
SPARSE_FLAGS = -Wsparse-all -Wno-unknown-attribute -Wno-default-bitfield-sign
@@ -145,7 +145,7 @@ TEST_C_SOURCES = \
COMPILER_DIR = $(srcdir)/../compiler
# TODO for now it is just some test code...
COMPILER_SOURCES = \
- $(srcdir)/../compiler/sources.index \
+ $(srcdir)/../compiler/sources.index \
$(srcdir)/../compiler/misc.slul \
$(srcdir)/../compiler/SomeClass.slul \
$(srcdir)/../compiler/TheCommand.slul
@@ -205,10 +205,10 @@ check-all: check check-valgrind check-boundschecked clang-analyze \
check-tokens longlines
check-valgrind: $(builddir)/stage1
valgrind --leak-check=yes -q $(builddir)/stage1 \
- $(INTERFACES_DIR) $(COMPILER_DIR) $(builddir)/gen/compiler_vg.c
+ $(INTERFACES_DIR) $(COMPILER_DIR) $(builddir)/gen/compiler_vg.c
check-boundschecked: $(builddir)/stage1-boundschecked
TCC_BOUNDS_WARN_POINTER_ADD=1 $(builddir)/stage1-boundschecked \
- $(INTERFACES_DIR) $(COMPILER_DIR) $(builddir)/gen/compiler_bchk.c
+ $(INTERFACES_DIR) $(COMPILER_DIR) $(builddir)/gen/compiler_bchk.c
clang-analyze:
clang --analyze $(CLANG_ANALYZE_FLAGS) $(C_SOURCES) $(TEST_C_SOURCES)
longlines:
@@ -226,7 +226,7 @@ check-tokens:
if [ "x$$kwstr" != "x$$kwconst" ]; then \
printf "Keyword str \"%s\" and enum \"%s\" mismatch\n" \
"$$kwstr" "$$kwconst" >&2; \
- exit 1; \
+ exit 1; \
fi; \
done
gcc-analyzer: gcc-analyzer-stage1 gcc-analyzer-rtl gcc-analyzer-tests