mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
pipe-loader: consolidate sources into Makefile.sources
Drop the unneeded subdir-objects. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
This commit is contained in:
parent
631090e155
commit
dfa61dc37e
2 changed files with 10 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
8
src/gallium/auxiliary/pipe-loader/Makefile.sources
Normal file
8
src/gallium/auxiliary/pipe-loader/Makefile.sources
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Reference in a new issue