editorconfig: set indent_style=tab for makefiles

Replace mixed indentation in GNUmakefile used for alignment by a single
tab increase in indentation

Part of #12408
This commit is contained in:
Daniel Rainer
2026-02-02 17:05:40 +01:00
committed by Johannes Altmanninger
parent fb56a6a54d
commit f43a79bc13
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 100
[{Makefile,*.in}]
[{Makefile,{BSD,GNU}makefile,*.in}]
indent_style = tab
[*.{md,rst}]

View File

@@ -7,7 +7,7 @@
CMAKE ?= cmake
GENERATOR ?= $(shell (which ninja > /dev/null 2> /dev/null && echo Ninja) || \
echo 'Unix Makefiles')
echo 'Unix Makefiles')
prefix ?= /usr/local
PREFIX ?= $(prefix)
@@ -34,7 +34,7 @@ all: .begin build/fish
.PHONY: .begin
.begin:
@which $(CMAKE) > /dev/null 2> /dev/null || \
(echo 'Please install CMake and then re-run the `make` command!' 1>&2 && false)
(echo 'Please install CMake and then re-run the `make` command!' 1>&2 && false)
.PHONY: build/fish
build/fish: build/$(BUILDFILE)