st/wgl: consolidate C sources list into Makefile.sources
authorEmil Velikov <emil.l.velikov@gmail.com>
Sun, 22 Sep 2013 19:45:09 +0000 (20:45 +0100)
committerTom Stellard <thomas.stellard@amd.com>
Tue, 1 Oct 2013 14:29:51 +0000 (07:29 -0700)
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
src/gallium/state_trackers/wgl/Makefile.sources [new file with mode: 0644]
src/gallium/state_trackers/wgl/SConscript

diff --git a/src/gallium/state_trackers/wgl/Makefile.sources b/src/gallium/state_trackers/wgl/Makefile.sources
new file mode 100644 (file)
index 0000000..e93342a
--- /dev/null
@@ -0,0 +1,15 @@
+C_SOURCES := \
+       stw_context.c \
+       stw_device.c \
+       stw_ext_context.c \
+       stw_ext_extensionsstring.c \
+       stw_ext_gallium.c \
+       stw_ext_pbuffer.c \
+       stw_ext_pixelformat.c \
+       stw_ext_swapinterval.c \
+       stw_framebuffer.c \
+       stw_getprocaddress.c \
+       stw_pixelformat.c \
+       stw_st.c \
+       stw_tls.c \
+       stw_wgl.c
index 1014b45c367cba6439ece56fcc89d804b41ca305..6c604a0f204fbc9c383c078c203c4a0587d9bdf0 100644 (file)
@@ -19,25 +19,8 @@ if not env['gles']:
     # prevent _glapi_* from being declared __declspec(dllimport)
     env.Append(CPPDEFINES = ['_GLAPI_NO_EXPORTS'])
 
-sources = [
-    'stw_context.c',
-    'stw_device.c',
-    'stw_ext_context.c',
-    'stw_ext_extensionsstring.c',
-    'stw_ext_gallium.c',
-    'stw_ext_pbuffer.c',
-    'stw_ext_pixelformat.c',
-    'stw_ext_swapinterval.c',
-    'stw_framebuffer.c',
-    'stw_getprocaddress.c',
-    'stw_pixelformat.c',
-    'stw_st.c',
-    'stw_tls.c',
-    'stw_wgl.c',
-]
-
 wgl = env.ConvenienceLibrary(
     target ='wgl',
-    source = sources,
+    source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'),
 )
 Export('wgl')