style: convert spaces to tabs in Makefile (#924)

Additionally, we setup an EditorConfig rule to automatically switch to
tab style on Makefile.

Signed-off-by: Juan Cruz Viotti <jviotti@openmailbox.org>
This commit is contained in:
Juan Cruz Viotti 2016-12-01 19:51:53 -04:00 committed by GitHub
parent 68a71d89e2
commit 2b7f36a3c7
2 changed files with 6 additions and 3 deletions

View File

@ -8,3 +8,6 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[Makefile]
indent_style = tab

View File

@ -51,16 +51,16 @@ else
endif
ifndef HOST_PLATFORM
$(error We couldn\'t detect your host platform)
$(error We couldn\'t detect your host platform)
endif
ifndef HOST_ARCH
$(error We couldn\'t detect your host architecture)
$(error We couldn\'t detect your host architecture)
endif
TARGET_PLATFORM = $(HOST_PLATFORM)
ifneq ($(TARGET_PLATFORM),$(HOST_PLATFORM))
$(error We don\'t support cross-platform builds yet)
$(error We don\'t support cross-platform builds yet)
endif
# Default to host architecture. You can override by doing: