From 1a955043907a7eccf11dc107ee3dae576a0a7ae0 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 3 Jun 2015 12:47:56 -0700 Subject: [PATCH] No need to write a loop to reindent the source files --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6d3666a..94c63fc 100644 --- a/Makefile +++ b/Makefile @@ -45,4 +45,4 @@ clean: rm tippecanoe *.o indent: - for i in $(C) $(H); do clang-format -i -style="{BasedOnStyle: Google, IndentWidth: 8, UseTab: Always, AllowShortIfStatementsOnASingleLine: false, ColumnLimit: 0, ContinuationIndentWidth: 8, SpaceAfterCStyleCast: true, IndentCaseLabels: false, AllowShortBlocksOnASingleLine: false, AllowShortFunctionsOnASingleLine: false}" $$i; done + clang-format -i -style="{BasedOnStyle: Google, IndentWidth: 8, UseTab: Always, AllowShortIfStatementsOnASingleLine: false, ColumnLimit: 0, ContinuationIndentWidth: 8, SpaceAfterCStyleCast: true, IndentCaseLabels: false, AllowShortBlocksOnASingleLine: false, AllowShortFunctionsOnASingleLine: false}" $(C) $(H)