From 95603e259b6afdab50c4330696a8fbede80327f1 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Sun, 17 Aug 2014 20:15:07 +0100 Subject: winsys/sw: automake: consistently use Makefile.sources - Include the headers within. - Update scons to use them. - Drop useless include (gallium/drivers) from scons. Signed-off-by: Emil Velikov --- src/gallium/winsys/sw/fbdev/Makefile.am | 3 ++- src/gallium/winsys/sw/fbdev/Makefile.sources | 3 +++ src/gallium/winsys/sw/fbdev/SConscript | 5 +---- 3 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 src/gallium/winsys/sw/fbdev/Makefile.sources (limited to 'src/gallium/winsys/sw/fbdev') diff --git a/src/gallium/winsys/sw/fbdev/Makefile.am b/src/gallium/winsys/sw/fbdev/Makefile.am index 93abe816185..2953376d288 100644 --- a/src/gallium/winsys/sw/fbdev/Makefile.am +++ b/src/gallium/winsys/sw/fbdev/Makefile.am @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. +include Makefile.sources include $(top_srcdir)/src/gallium/Automake.inc AM_CFLAGS = \ @@ -27,4 +28,4 @@ AM_CFLAGS = \ noinst_LTLIBRARIES = libfbdev.la -libfbdev_la_SOURCES = fbdev_sw_winsys.c +libfbdev_la_SOURCES = $(C_SOURCES) diff --git a/src/gallium/winsys/sw/fbdev/Makefile.sources b/src/gallium/winsys/sw/fbdev/Makefile.sources new file mode 100644 index 00000000000..dd48051cfd5 --- /dev/null +++ b/src/gallium/winsys/sw/fbdev/Makefile.sources @@ -0,0 +1,3 @@ +C_SOURCES := \ + fbdev_sw_winsys.c \ + fbdev_sw_winsys.h diff --git a/src/gallium/winsys/sw/fbdev/SConscript b/src/gallium/winsys/sw/fbdev/SConscript index 3b5b4ff1c07..bf504ad28d8 100644 --- a/src/gallium/winsys/sw/fbdev/SConscript +++ b/src/gallium/winsys/sw/fbdev/SConscript @@ -11,13 +11,10 @@ if env['platform'] == 'linux': env.Append(CPPPATH = [ '#/src/gallium/include', '#/src/gallium/auxiliary', - '#/src/gallium/drivers', ]) ws_fbdev = env.ConvenienceLibrary( target = 'ws_fbdev', - source = [ - 'fbdev_sw_winsys.c', - ] + source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'), ) Export('ws_fbdev') -- cgit v1.2.3