diff options
author | Rob Herring <[email protected]> | 2017-05-03 14:35:20 -0500 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-05-11 13:52:21 +0100 |
commit | 3f097396a1642bb7033002d0bdd37e194afce06a (patch) | |
tree | 8a4bd04f538b8622325f18b9b26053256a44da63 /src/gallium/drivers/r300 | |
parent | 2a2dabe1c330fea311505b453de58ddcd5488fcc (diff) |
Android: push driver build details to driver makefiles
src/gallium/targets/dri/Android.mk contains lots of conditional for
individual drivers. Let's move these details into the individual driver
makefiles.
In the process, align the make driver conditionals with automake
(i.e. HAVE_GALLIUM_*).
Signed-off-by: Rob Herring <[email protected]>
[Emil Velikov: add the radeon winsys for radeonsi]
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r300')
-rw-r--r-- | src/gallium/drivers/r300/Android.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/Android.mk b/src/gallium/drivers/r300/Android.mk index e2939ac4043..0c89cdbb147 100644 --- a/src/gallium/drivers/r300/Android.mk +++ b/src/gallium/drivers/r300/Android.mk @@ -41,3 +41,7 @@ LOCAL_MODULE := libmesa_pipe_r300 include $(GALLIUM_COMMON_MK) include $(BUILD_STATIC_LIBRARY) +ifneq ($(HAVE_GALLIUM_R300),) +$(eval GALLIUM_LIBS += $(LOCAL_MODULE) libmesa_winsys_radeon) +$(eval GALLIUM_SHARED_LIBS += $(LOCAL_SHARED_LIBRARIES)) +endif |