diff options
author | Emil Velikov <[email protected]> | 2013-09-28 18:11:20 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2013-11-16 14:02:15 +0000 |
commit | 01d35eb372f1ac7d8633af783424c32d3b6239e3 (patch) | |
tree | 37b1ac3febf73f5b95106a676ad0fef5587e29b2 /src/mesa/drivers/dri/common/Makefile.sources | |
parent | b51b3fc5375999cfd3661d8606d51f7e7d926d31 (diff) |
dri/common: move source file lists to Makefile.sources
* Allow the lists to be shared among build systems.
* Update automake and Android build systems.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/common/Makefile.sources')
-rw-r--r-- | src/mesa/drivers/dri/common/Makefile.sources | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/common/Makefile.sources b/src/mesa/drivers/dri/common/Makefile.sources index 040b7172541..8469b49500c 100644 --- a/src/mesa/drivers/dri/common/Makefile.sources +++ b/src/mesa/drivers/dri/common/Makefile.sources @@ -1,11 +1,8 @@ -mesa_dri_common_gallium_SOURCES := \ +DRI_COMMON_FILES := \ utils.c \ dri_util.c \ xmlconfig.c -mesa_dri_common_SOURCES := \ - $(mesa_dri_common_gallium_SOURCES) - # Paths are relative to MESA_TOP. mesa_dri_common_INCLUDES := \ include \ @@ -14,3 +11,6 @@ mesa_dri_common_INCLUDES := \ src/mapi \ src/mesa \ src/mesa/drivers/dri/common + +test_stubs_FILES := \ + dri_test.c |