summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Ratajsky <[email protected]>2015-12-10 02:06:20 +0100
committerMichal Ratajsky <[email protected]>2015-12-10 02:06:20 +0100
commit3d0ebc39eae3cc2a80380fa6ea62f40673f045c9 (patch)
tree92cf47bc68eeb98c2c5b86984764a7bb088e0023
parentb3952a0d4fb8afb4716ccdd5313cfc53c506ec64 (diff)
downloadlibmatemixer-3d0ebc39eae3cc2a80380fa6ea62f40673f045c9.tar.bz2
libmatemixer-3d0ebc39eae3cc2a80380fa6ea62f40673f045c9.tar.xz
Replace leading spaces in Makefiles with tabs
-rw-r--r--Makefile.am46
-rw-r--r--backends/alsa/Makefile.am70
-rw-r--r--backends/null/Makefile.am18
-rw-r--r--backends/oss/Makefile.am50
-rw-r--r--backends/pulse/Makefile.am110
-rw-r--r--docs/reference/Makefile.am32
-rw-r--r--examples/Makefile.am8
-rw-r--r--libmatemixer/Makefile.am92
8 files changed, 213 insertions, 213 deletions
diff --git a/Makefile.am b/Makefile.am
index a18639c..f0b122a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,31 +1,31 @@
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
SUBDIRS = \
- libmatemixer \
- backends \
- data \
- docs \
- examples \
- po
+ libmatemixer \
+ backends \
+ data \
+ docs \
+ examples \
+ po
EXTRA_DIST = autogen.sh
-MAINTAINERCLEANFILES = \
- $(srcdir)/aclocal.m4 \
- $(srcdir)/config.h.in \
- $(srcdir)/build-aux/compile \
- $(srcdir)/build-aux/config.guess \
- $(srcdir)/build-aux/config.sub \
- $(srcdir)/build-aux/depcomp \
- $(srcdir)/build-aux/install-sh \
- $(srcdir)/build-aux/ltmain.sh \
- $(srcdir)/build-aux/missing \
- $(srcdir)/build-aux/mkinstalldirs \
- $(srcdir)/m4/libtool.m4 \
- $(srcdir)/m4/lt~obsolete.m4 \
- $(srcdir)/m4/ltoptions.m4 \
- $(srcdir)/m4/ltsugar.m4 \
- $(srcdir)/m4/ltversion.m4 \
- $(srcdir)/m4/gtk-doc.m4
+MAINTAINERCLEANFILES = \
+ $(srcdir)/aclocal.m4 \
+ $(srcdir)/config.h.in \
+ $(srcdir)/build-aux/compile \
+ $(srcdir)/build-aux/config.guess \
+ $(srcdir)/build-aux/config.sub \
+ $(srcdir)/build-aux/depcomp \
+ $(srcdir)/build-aux/install-sh \
+ $(srcdir)/build-aux/ltmain.sh \
+ $(srcdir)/build-aux/missing \
+ $(srcdir)/build-aux/mkinstalldirs \
+ $(srcdir)/m4/libtool.m4 \
+ $(srcdir)/m4/lt~obsolete.m4 \
+ $(srcdir)/m4/ltoptions.m4 \
+ $(srcdir)/m4/ltsugar.m4 \
+ $(srcdir)/m4/ltversion.m4 \
+ $(srcdir)/m4/gtk-doc.m4
-include $(top_srcdir)/git.mk
diff --git a/backends/alsa/Makefile.am b/backends/alsa/Makefile.am
index 7561290..0e6b6d0 100644
--- a/backends/alsa/Makefile.am
+++ b/backends/alsa/Makefile.am
@@ -3,48 +3,48 @@ backenddir = $(libdir)/libmatemixer
backend_LTLIBRARIES = libmatemixer-alsa.la
AM_CPPFLAGS = \
- -Wno-unknown-pragmas \
- -I$(top_srcdir) \
- -DG_LOG_DOMAIN=\"libmatemixer-alsa\"
+ -Wno-unknown-pragmas \
+ -I$(top_srcdir) \
+ -DG_LOG_DOMAIN=\"libmatemixer-alsa\"
libmatemixer_alsa_la_CFLAGS = \
- $(GLIB_CFLAGS) \
- $(ALSA_CFLAGS)
+ $(GLIB_CFLAGS) \
+ $(ALSA_CFLAGS)
libmatemixer_alsa_la_SOURCES = \
- alsa-backend.c \
- alsa-backend.h \
- alsa-compat.h \
- alsa-constants.c \
- alsa-constants.h \
- alsa-device.c \
- alsa-device.h \
- alsa-element.c \
- alsa-element.h \
- alsa-stream.c \
- alsa-stream.h \
- alsa-stream-control.c \
- alsa-stream-control.h \
- alsa-stream-input-control.c \
- alsa-stream-input-control.h \
- alsa-stream-output-control.c \
- alsa-stream-output-control.h \
- alsa-switch.c \
- alsa-switch.h \
- alsa-switch-option.c \
- alsa-switch-option.h \
- alsa-toggle.c \
- alsa-toggle.h \
- alsa-types.h
+ alsa-backend.c \
+ alsa-backend.h \
+ alsa-compat.h \
+ alsa-constants.c \
+ alsa-constants.h \
+ alsa-device.c \
+ alsa-device.h \
+ alsa-element.c \
+ alsa-element.h \
+ alsa-stream.c \
+ alsa-stream.h \
+ alsa-stream-control.c \
+ alsa-stream-control.h \
+ alsa-stream-input-control.c \
+ alsa-stream-input-control.h \
+ alsa-stream-output-control.c \
+ alsa-stream-output-control.h \
+ alsa-switch.c \
+ alsa-switch.h \
+ alsa-switch-option.c \
+ alsa-switch-option.h \
+ alsa-toggle.c \
+ alsa-toggle.h \
+ alsa-types.h
libmatemixer_alsa_la_LIBADD = \
- $(GLIB_LIBS) \
- $(ALSA_LIBS)
+ $(GLIB_LIBS) \
+ $(ALSA_LIBS)
libmatemixer_alsa_la_LDFLAGS = \
- -avoid-version \
- -no-undefined \
- -export-dynamic \
- -module
+ -avoid-version \
+ -no-undefined \
+ -export-dynamic \
+ -module
-include $(top_srcdir)/git.mk
diff --git a/backends/null/Makefile.am b/backends/null/Makefile.am
index 08005e4..9c4fd4c 100644
--- a/backends/null/Makefile.am
+++ b/backends/null/Makefile.am
@@ -3,22 +3,22 @@ backenddir = $(libdir)/libmatemixer
backend_LTLIBRARIES = libmatemixer-null.la
AM_CPPFLAGS = \
- -Wno-unknown-pragmas \
- -I$(top_srcdir) \
- -DG_LOG_DOMAIN=\"libmatemixer-null\"
+ -Wno-unknown-pragmas \
+ -I$(top_srcdir) \
+ -DG_LOG_DOMAIN=\"libmatemixer-null\"
libmatemixer_null_la_CFLAGS = $(GLIB_CFLAGS)
libmatemixer_null_la_SOURCES = \
- null-backend.c \
- null-backend.h
+ null-backend.c \
+ null-backend.h
libmatemixer_null_la_LIBADD = $(GLIB_LIBS)
libmatemixer_null_la_LDFLAGS = \
- -avoid-version \
- -no-undefined \
- -export-dynamic \
- -module
+ -avoid-version \
+ -no-undefined \
+ -export-dynamic \
+ -module
-include $(top_srcdir)/git.mk
diff --git a/backends/oss/Makefile.am b/backends/oss/Makefile.am
index f535a37..360082f 100644
--- a/backends/oss/Makefile.am
+++ b/backends/oss/Makefile.am
@@ -3,38 +3,38 @@ backenddir = $(libdir)/libmatemixer
backend_LTLIBRARIES = libmatemixer-oss.la
AM_CPPFLAGS = \
- -Wno-unknown-pragmas \
- -I$(top_srcdir) \
- -DG_LOG_DOMAIN=\"libmatemixer-oss\"
+ -Wno-unknown-pragmas \
+ -I$(top_srcdir) \
+ -DG_LOG_DOMAIN=\"libmatemixer-oss\"
libmatemixer_oss_la_CFLAGS = \
- $(GLIB_CFLAGS) \
- $(OSS_CFLAGS)
+ $(GLIB_CFLAGS) \
+ $(OSS_CFLAGS)
libmatemixer_oss_la_SOURCES = \
- oss-common.h \
- oss-backend.c \
- oss-backend.h \
- oss-device.c \
- oss-device.h \
- oss-stream.c \
- oss-stream.h \
- oss-stream-control.c \
- oss-stream-control.h \
- oss-switch.c \
- oss-switch.h \
- oss-switch-option.c \
- oss-switch-option.h \
- oss-types.h
+ oss-common.h \
+ oss-backend.c \
+ oss-backend.h \
+ oss-device.c \
+ oss-device.h \
+ oss-stream.c \
+ oss-stream.h \
+ oss-stream-control.c \
+ oss-stream-control.h \
+ oss-switch.c \
+ oss-switch.h \
+ oss-switch-option.c \
+ oss-switch-option.h \
+ oss-types.h
libmatemixer_oss_la_LIBADD = \
- $(GLIB_LIBS) \
- $(OSS_LIBS)
+ $(GLIB_LIBS) \
+ $(OSS_LIBS)
libmatemixer_oss_la_LDFLAGS = \
- -avoid-version \
- -no-undefined \
- -export-dynamic \
- -module
+ -avoid-version \
+ -no-undefined \
+ -export-dynamic \
+ -module
-include $(top_srcdir)/git.mk
diff --git a/backends/pulse/Makefile.am b/backends/pulse/Makefile.am
index 4c851bf..74fe128 100644
--- a/backends/pulse/Makefile.am
+++ b/backends/pulse/Makefile.am
@@ -3,68 +3,68 @@ backenddir = $(libdir)/libmatemixer
backend_LTLIBRARIES = libmatemixer-pulse.la
AM_CPPFLAGS = \
- -Wno-unknown-pragmas \
- -I$(top_srcdir) \
- -DG_LOG_DOMAIN=\"libmatemixer-pulse\"
+ -Wno-unknown-pragmas \
+ -I$(top_srcdir) \
+ -DG_LOG_DOMAIN=\"libmatemixer-pulse\"
libmatemixer_pulse_la_CFLAGS = \
- $(GLIB_CFLAGS) \
- $(PULSEAUDIO_CFLAGS)
+ $(GLIB_CFLAGS) \
+ $(PULSEAUDIO_CFLAGS)
libmatemixer_pulse_la_SOURCES = \
- pulse-backend.c \
- pulse-backend.h \
- pulse-connection.c \
- pulse-connection.h \
- pulse-device.c \
- pulse-device.h \
- pulse-device-profile.c \
- pulse-device-profile.h \
- pulse-device-switch.c \
- pulse-device-switch.h \
- pulse-enums.h \
- pulse-enum-types.c \
- pulse-enum-types.h \
- pulse-ext-stream.c \
- pulse-ext-stream.h \
- pulse-helpers.c \
- pulse-helpers.h \
- pulse-monitor.c \
- pulse-monitor.h \
- pulse-port.c \
- pulse-port.h \
- pulse-port-switch.c \
- pulse-port-switch.h \
- pulse-stream.c \
- pulse-stream.h \
- pulse-stream-control.c \
- pulse-stream-control.h \
- pulse-sink.c \
- pulse-sink.h \
- pulse-sink-control.c \
- pulse-sink-control.h \
- pulse-sink-input.c \
- pulse-sink-input.h \
- pulse-sink-switch.c \
- pulse-sink-switch.h \
- pulse-source.c \
- pulse-source.h \
- pulse-source-control.c \
- pulse-source-control.h \
- pulse-source-output.c \
- pulse-source-output.h \
- pulse-source-switch.c \
- pulse-source-switch.h \
- pulse-types.h
+ pulse-backend.c \
+ pulse-backend.h \
+ pulse-connection.c \
+ pulse-connection.h \
+ pulse-device.c \
+ pulse-device.h \
+ pulse-device-profile.c \
+ pulse-device-profile.h \
+ pulse-device-switch.c \
+ pulse-device-switch.h \
+ pulse-enums.h \
+ pulse-enum-types.c \
+ pulse-enum-types.h \
+ pulse-ext-stream.c \
+ pulse-ext-stream.h \
+ pulse-helpers.c \
+ pulse-helpers.h \
+ pulse-monitor.c \
+ pulse-monitor.h \
+ pulse-port.c \
+ pulse-port.h \
+ pulse-port-switch.c \
+ pulse-port-switch.h \
+ pulse-stream.c \
+ pulse-stream.h \
+ pulse-stream-control.c \
+ pulse-stream-control.h \
+ pulse-sink.c \
+ pulse-sink.h \
+ pulse-sink-control.c \
+ pulse-sink-control.h \
+ pulse-sink-input.c \
+ pulse-sink-input.h \
+ pulse-sink-switch.c \
+ pulse-sink-switch.h \
+ pulse-source.c \
+ pulse-source.h \
+ pulse-source-control.c \
+ pulse-source-control.h \
+ pulse-source-output.c \
+ pulse-source-output.h \
+ pulse-source-switch.c \
+ pulse-source-switch.h \
+ pulse-types.h
libmatemixer_pulse_la_LIBADD = \
- $(GLIB_LIBS) \
- $(PULSEAUDIO_LIBS)
+ $(GLIB_LIBS) \
+ $(PULSEAUDIO_LIBS)
libmatemixer_pulse_la_LDFLAGS = \
- -avoid-version \
- -no-undefined \
- -export-dynamic \
- -module
+ -avoid-version \
+ -no-undefined \
+ -export-dynamic \
+ -module
-include $(top_srcdir)/git.mk
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
index fb3db04..ed9e987 100644
--- a/docs/reference/Makefile.am
+++ b/docs/reference/Makefile.am
@@ -53,15 +53,15 @@ EXTRA_HFILES=
# Header files or dirs to ignore when scanning. Use base file/dir names
# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h private_code
IGNORE_HFILES= \
- matemixer-app-info-private.h \
- matemixer-backend.h \
- matemixer-backend-module.h \
- matemixer-enum-types.h \
- matemixer-stream-control-private.h \
- matemixer-stream-private.h \
- matemixer-switch-option-private.h \
- matemixer-switch-private.h \
- matemixer-private.h
+ matemixer-app-info-private.h \
+ matemixer-backend.h \
+ matemixer-backend-module.h \
+ matemixer-enum-types.h \
+ matemixer-stream-control-private.h \
+ matemixer-stream-private.h \
+ matemixer-switch-option-private.h \
+ matemixer-switch-private.h \
+ matemixer-private.h
# Images to copy into HTML directory.
# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
@@ -82,13 +82,13 @@ expand_content_files=
# e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
GTKDOC_CFLAGS= \
- -I$(top_srcdir) \
- -I$(top_builddir) \
- $(GLIB_CFLAGS)
+ -I$(top_srcdir) \
+ -I$(top_builddir) \
+ $(GLIB_CFLAGS)
GTKDOC_LIBS= \
- $(top_builddir)/libmatemixer/libmatemixer.la \
- $(GLIB_LIBS)
+ $(top_builddir)/libmatemixer/libmatemixer.la \
+ $(GLIB_LIBS)
# This includes the standard gtk-doc make rules, copied by gtkdocize.
include $(top_srcdir)/gtk-doc.make
@@ -106,8 +106,8 @@ EXTRA_DIST += version.xml.in
# and run some sanity checks
if ENABLE_GTK_DOC
TESTS_ENVIRONMENT = \
- DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \
- SRCDIR=$(abs_srcdir) BUILDDIR=$(abs_builddir)
+ DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \
+ SRCDIR=$(abs_srcdir) BUILDDIR=$(abs_builddir)
#TESTS = $(GTKDOC_CHECK)
endif
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 820a0f3..5e6d7ac 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -1,14 +1,14 @@
AM_CPPFLAGS = \
- -I$(top_srcdir) \
- $(GLIB_CFLAGS)
+ -I$(top_srcdir) \
+ $(GLIB_CFLAGS)
noinst_PROGRAMS = matemixer-monitor
matemixer_monitor_SOURCES = monitor.c
matemixer_monitor_LDADD = \
- $(GLIB_LIBS) \
- $(top_builddir)/libmatemixer/libmatemixer.la
+ $(GLIB_LIBS) \
+ $(top_builddir)/libmatemixer/libmatemixer.la
EXTRA_DIST = monitor.c
diff --git a/libmatemixer/Makefile.am b/libmatemixer/Makefile.am
index f158737..431729e 100644
--- a/libmatemixer/Makefile.am
+++ b/libmatemixer/Makefile.am
@@ -1,63 +1,63 @@
lib_LTLIBRARIES = libmatemixer.la
AM_CPPFLAGS = \
- -I$(top_srcdir) \
- -I$(top_srcdir)/libmatemixer \
- -DG_LOG_DOMAIN=\"libmatemixer\" \
- -DLIBMATEMIXER_BACKEND_DIR=\"$(libdir)/libmatemixer\"
+ -I$(top_srcdir) \
+ -I$(top_srcdir)/libmatemixer \
+ -DG_LOG_DOMAIN=\"libmatemixer\" \
+ -DLIBMATEMIXER_BACKEND_DIR=\"$(libdir)/libmatemixer\"
libmatemixer_includedir = $(includedir)/mate-mixer/libmatemixer
libmatemixer_include_HEADERS = \
- matemixer.h \
- matemixer-app-info.h \
- matemixer-context.h \
- matemixer-device.h \
- matemixer-device-switch.h \
- matemixer-enums.h \
- matemixer-enum-types.h \
- matemixer-stored-control.h \
- matemixer-stream.h \
- matemixer-stream-control.h \
- matemixer-stream-switch.h \
- matemixer-stream-toggle.h \
- matemixer-switch.h \
- matemixer-switch-option.h \
- matemixer-types.h \
- matemixer-version.h
+ matemixer.h \
+ matemixer-app-info.h \
+ matemixer-context.h \
+ matemixer-device.h \
+ matemixer-device-switch.h \
+ matemixer-enums.h \
+ matemixer-enum-types.h \
+ matemixer-stored-control.h \
+ matemixer-stream.h \
+ matemixer-stream-control.h \
+ matemixer-stream-switch.h \
+ matemixer-stream-toggle.h \
+ matemixer-switch.h \
+ matemixer-switch-option.h \
+ matemixer-types.h \
+ matemixer-version.h
libmatemixer_la_CFLAGS = $(GLIB_CFLAGS)
libmatemixer_la_SOURCES = \
- matemixer.c \
- matemixer-private.h \
- matemixer-app-info.c \
- matemixer-app-info-private.h \
- matemixer-backend.c \
- matemixer-backend.h \
- matemixer-backend-module.c \
- matemixer-backend-module.h \
- matemixer-context.c \
- matemixer-device.c \
- matemixer-device-switch.c \
- matemixer-enum-types.c \
- matemixer-stored-control.c \
- matemixer-stream.c \
- matemixer-stream-private.h \
- matemixer-stream-control.c \
- matemixer-stream-control-private.h \
- matemixer-stream-switch.c \
- matemixer-stream-toggle.c \
- matemixer-switch.c \
- matemixer-switch-private.h \
- matemixer-switch-option.c \
- matemixer-switch-option-private.h
+ matemixer.c \
+ matemixer-private.h \
+ matemixer-app-info.c \
+ matemixer-app-info-private.h \
+ matemixer-backend.c \
+ matemixer-backend.h \
+ matemixer-backend-module.c \
+ matemixer-backend-module.h \
+ matemixer-context.c \
+ matemixer-device.c \
+ matemixer-device-switch.c \
+ matemixer-enum-types.c \
+ matemixer-stored-control.c \
+ matemixer-stream.c \
+ matemixer-stream-private.h \
+ matemixer-stream-control.c \
+ matemixer-stream-control-private.h \
+ matemixer-stream-switch.c \
+ matemixer-stream-toggle.c \
+ matemixer-switch.c \
+ matemixer-switch-private.h \
+ matemixer-switch-option.c \
+ matemixer-switch-option-private.h
libmatemixer_la_LIBADD = $(GLIB_LIBS)
libmatemixer_la_LDFLAGS = \
- -version-info $(LT_VERSION) \
- -no-undefined \
- -export-dynamic
+ -version-info $(LT_VERSION) \
+ -no-undefined \
+ -export-dynamic
-include $(top_srcdir)/git.mk