build: tweak formatting of multi-line variables in Makefiles
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Fri, 6 Sep 2019 13:51:04 +0000 (15:51 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 10 Sep 2019 08:43:24 +0000 (10:43 +0200)
Don't put a tab between the asignment and the first string - just move
the whole list one line below.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
bindings/cxx/examples/Makefile.am
bindings/cxx/tests/Makefile.am
bindings/python/examples/Makefile.am
tests/Makefile.am

index a66296bfcab78ad83846e4cc1f2ffcf67a850d29..8d39be25ab40aac4e2d704bacad746178b66cb17 100644 (file)
@@ -10,12 +10,13 @@ AM_CPPFLAGS = -I$(top_srcdir)/bindings/cxx/ -I$(top_srcdir)/include
 AM_CPPFLAGS += -Wall -Wextra -g -std=gnu++11
 AM_LDFLAGS = -lgpiodcxx -L$(top_builddir)/bindings/cxx/
 
-noinst_PROGRAMS =      gpiodetectcxx \
-                       gpiofindcxx \
-                       gpiogetcxx \
-                       gpioinfocxx \
-                       gpiomoncxx \
-                       gpiosetcxx
+noinst_PROGRAMS =                              \
+               gpiodetectcxx                   \
+               gpiofindcxx                     \
+               gpiogetcxx                      \
+               gpioinfocxx                     \
+               gpiomoncxx                      \
+               gpiosetcxx
 
 gpiodetectcxx_SOURCES = gpiodetectcxx.cpp
 
index 5800a23369440adf2a1b5f99200d38409549325e..5fa8f95c80ad1c45ac17c9dc0c36b8749041b6c6 100644 (file)
@@ -15,11 +15,12 @@ AM_LDFLAGS += -pthread
 
 bin_PROGRAMS = gpiod-cxx-test
 
-gpiod_cxx_test_SOURCES =       gpiod-cxx-test-main.cpp \
-                               gpiod-cxx-test.cpp \
-                               gpio-mockup.cpp \
-                               gpio-mockup.hpp \
-                               tests-chip.cpp \
-                               tests-event.cpp \
-                               tests-iter.cpp \
-                               tests-line.cpp
+gpiod_cxx_test_SOURCES =                       \
+               gpiod-cxx-test-main.cpp         \
+               gpiod-cxx-test.cpp              \
+               gpio-mockup.cpp                 \
+               gpio-mockup.hpp                 \
+               tests-chip.cpp                  \
+               tests-event.cpp                 \
+               tests-iter.cpp                  \
+               tests-line.cpp
index 0703e81f9ca3b09672ab80c2cea531dcb12ef539..a0e06c07bdf01f034e3f8b3a3c489fe2cbf8e587 100644 (file)
@@ -6,9 +6,10 @@
 # Copyright (C) 2017-2018 Bartosz Golaszewski <bartekgola@gmail.com>
 #
 
-EXTRA_DIST =   gpiodetect.py \
-               gpiofind.py \
-               gpioget.py \
-               gpioinfo.py \
-               gpiomon.py \
+EXTRA_DIST =                           \
+               gpiodetect.py           \
+               gpiofind.py             \
+               gpioget.py              \
+               gpioinfo.py             \
+               gpiomon.py              \
                gpioset.py
index eb6f41ea088c1783976485f7cf0f0c9f57d2fec7..d761d6048aa4e48326a840037f8da95c045785ce 100644 (file)
@@ -19,14 +19,15 @@ LDADD += $(GLIB_LIBS)
 
 bin_PROGRAMS = gpiod-test
 
-gpiod_test_SOURCES =   gpiod-test.c \
-                       gpiod-test.h \
-                       tests-chip.c \
-                       tests-ctxless.c \
-                       tests-event.c \
-                       tests-iter.c \
-                       tests-line.c \
-                       tests-misc.c
+gpiod_test_SOURCES =                   \
+               gpiod-test.c            \
+               gpiod-test.h            \
+               tests-chip.c            \
+               tests-ctxless.c         \
+               tests-event.c           \
+               tests-iter.c            \
+               tests-line.c            \
+               tests-misc.c
 
 all-local: gpiod-test
        @echo " ********************************************************"