Browse Source

identity: consolidate C sources list into Makefile.sources

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
tags/mesa-10.1-devel
Emil Velikov 12 years ago
parent
commit
d7c66ff59e

+ 1
- 0
configure.ac View File

@@ -2004,6 +2004,7 @@ AC_CONFIG_FILES([Makefile
src/gallium/drivers/freedreno/a2xx/Makefile
src/gallium/drivers/freedreno/a3xx/Makefile
src/gallium/drivers/i915/Makefile
src/gallium/drivers/identity/Makefile
src/gallium/drivers/ilo/Makefile
src/gallium/drivers/llvmpipe/Makefile
src/gallium/drivers/nouveau/Makefile

+ 1
- 10
src/gallium/drivers/Makefile.am View File

@@ -11,7 +11,7 @@ AM_CFLAGS = $(VISIBILITY_CFLAGS)

noinst_LTLIBRARIES =

SUBDIRS = . trace rbug
SUBDIRS = . identity trace rbug

################################################################################

@@ -24,15 +24,6 @@ galahad_libgalahad_la_SOURCES = \

################################################################################

noinst_LTLIBRARIES += identity/libidentity.la

identity_libidentity_la_SOURCES = \
identity/id_objects.c \
identity/id_context.c \
identity/id_screen.c

################################################################################

# Meta-driver which combines whichever software rasterizers have been
# built into a single convenience library.


+ 11
- 0
src/gallium/drivers/identity/Makefile.am View File

@@ -0,0 +1,11 @@
include Makefile.sources
include $(top_srcdir)/src/gallium/Automake.inc

AM_CFLAGS = \
-I$(top_srcdir)/src/gallium/drivers \
$(GALLIUM_CFLAGS) \
$(VISIBILITY_CFLAGS)

noinst_LTLIBRARIES = libidentity.la

libidentity_la_SOURCES = $(C_SOURCES)

+ 4
- 0
src/gallium/drivers/identity/Makefile.sources View File

@@ -0,0 +1,4 @@
C_SOURCES := \
id_objects.c \
id_context.c \
id_screen.c

+ 2
- 5
src/gallium/drivers/identity/SConscript View File

@@ -4,11 +4,8 @@ env = env.Clone()

identity = env.ConvenienceLibrary(
target = 'identity',
source = [
'id_context.c',
'id_objects.c',
'id_screen.c',
])
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
)

env.Alias('identity', identity)


Loading…
Cancel
Save