commit 139e98f68b1740d17138c3e21a226840f1dc7c89 parent 47bbaedc32a3616bc81c85d7780470e43eeb60eb Author: vaplv <vaplv@free.fr> Date: Tue, 27 Jun 2023 10:49:52 +0200 Minor Makefile formatting Reformat the default target command to ensure correct formatting regardless of tab size. Diffstat:
| M | Makefile | | | 12 | ++++++------ |
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/Makefile b/Makefile @@ -44,12 +44,12 @@ OBJ = $(SRC:.c=.o) DEP = $(SRC:.c=.d) build_library: $(DEP) - @$(MAKE) -fMakefile $$(for i in $(DEP); do echo -f $${i}; done)\ - $$(if [ -n "$(LIBNAME)" ]; then\ - echo "$(LIBNAME)";\ - else\ - echo "$(LIBNAME_SHARED)";\ - fi) + @$(MAKE) -fMakefile $$(for i in $(DEP); do echo -f $${i}; done) \ + $$(if [ -n "$(LIBNAME)" ]; then\ + echo "$(LIBNAME)";\ + else\ + echo "$(LIBNAME_SHARED)";\ + fi) $(OBJ): config.mk