Browse Source

auxiliary/vl: split the vl sources list into VL_SOURCES

With follow up commit we'll split vl static lib from the auxiliary one,
and choose the appropriate vl (galliumvl or galliumvl_stub) for the
respective targets to link against.

v2: Rebase.

Cc: Christian König <christian.koenig@amd.com>
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
tags/10.5-branchpoint
Emil Velikov 10 years ago
parent
commit
86a51eb861

+ 3
- 1
src/gallium/auxiliary/Android.mk View File

@@ -28,7 +28,9 @@ include $(LOCAL_PATH)/Makefile.sources

include $(CLEAR_VARS)

LOCAL_SRC_FILES := $(C_SOURCES)
LOCAL_SRC_FILES := \
$(C_SOURCES) \
$(VL_SOURCES)

LOCAL_C_INCLUDES := \
$(GALLIUM_TOP)/auxiliary/util \

+ 1
- 0
src/gallium/auxiliary/Makefile.am View File

@@ -18,6 +18,7 @@ AM_CXXFLAGS = $(VISIBILITY_CXXFLAGS)

libgallium_la_SOURCES = \
$(C_SOURCES) \
$(VL_SOURCES) \
$(GENERATED_SOURCES)

if HAVE_MESA_LLVM

+ 3
- 1
src/gallium/auxiliary/Makefile.sources View File

@@ -303,7 +303,9 @@ C_SOURCES := \
util/u_upload_mgr.h \
util/u_vbuf.c \
util/u_vbuf.h \
util/u_video.h \
util/u_video.h

VL_SOURCES := \
vl/vl_compositor.c \
vl/vl_compositor.h \
vl/vl_csc.c \

+ 1
- 0
src/gallium/auxiliary/SConscript View File

@@ -36,6 +36,7 @@ env.Depends('util/u_format_table.c', [

source = env.ParseSourceList('Makefile.sources', [
'C_SOURCES',
'VL_SOURCES',
'GENERATED_SOURCES'
])


Loading…
Cancel
Save