[Mesa-dev] [PATCH 1/4] pipe-loader: consolidate sources into Makefile.sources

Emil Velikov emil.l.velikov at gmail.com
Tue Oct 14 09:44:12 PDT 2014


Drop the unneeded subdir-objects.

Signed-off-by: Emil Velikov <emil.l.velikov at gmail.com>
---
 src/gallium/auxiliary/pipe-loader/Makefile.am      | 10 ++--------
 src/gallium/auxiliary/pipe-loader/Makefile.sources |  8 ++++++++
 2 files changed, 10 insertions(+), 8 deletions(-)
 create mode 100644 src/gallium/auxiliary/pipe-loader/Makefile.sources

diff --git a/src/gallium/auxiliary/pipe-loader/Makefile.am b/src/gallium/auxiliary/pipe-loader/Makefile.am
index 1204c79..44917f3 100644
--- a/src/gallium/auxiliary/pipe-loader/Makefile.am
+++ b/src/gallium/auxiliary/pipe-loader/Makefile.am
@@ -1,4 +1,4 @@
-AUTOMAKE_OPTIONS = subdir-objects
+include Makefile.sources
 
 AM_CPPFLAGS = $(DEFINES) \
 	$(VISIBILITY_CFLAGS) \
@@ -11,16 +11,10 @@ AM_CPPFLAGS = $(DEFINES) \
 noinst_LTLIBRARIES = libpipe_loader.la
 noinst_LTLIBRARIES += libpipe_loader_client.la
 
-COMMON_SOURCES = \
-	pipe_loader.h \
-	pipe_loader_priv.h \
-	pipe_loader.c \
-	pipe_loader_sw.c
-
 if HAVE_DRM_LOADER_GALLIUM
 AM_CFLAGS = $(LIBDRM_CFLAGS)
 
-COMMON_SOURCES += pipe_loader_drm.c
+COMMON_SOURCES += $(DRM_SOURCES)
 
 COMMON_LIBADD = \
 	$(top_builddir)/src/loader/libloader.la
diff --git a/src/gallium/auxiliary/pipe-loader/Makefile.sources b/src/gallium/auxiliary/pipe-loader/Makefile.sources
new file mode 100644
index 0000000..d6e3c2c
--- /dev/null
+++ b/src/gallium/auxiliary/pipe-loader/Makefile.sources
@@ -0,0 +1,8 @@
+COMMON_SOURCES := \
+	pipe_loader.c \
+	pipe_loader.h \
+	pipe_loader_priv.h \
+	pipe_loader_sw.c
+
+DRM_SOURCES := \
+	pipe_loader_drm.c
-- 
2.1.0



More information about the mesa-dev mailing list