2012-07-13 13:33:09 -04:00
|
|
|
GALLIUM_CFLAGS = \
|
|
|
|
|
-I$(top_srcdir)/include \
|
2014-07-23 14:58:52 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2012-07-13 13:33:09 -04:00
|
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
2012-09-05 20:41:08 -07:00
|
|
|
$(DEFINES)
|
2013-11-01 18:58:27 +00:00
|
|
|
|
|
|
|
|
# src/gallium/auxiliary must appear before src/gallium/drivers
|
|
|
|
|
# because there are stupidly two rbug_context.h files in
|
|
|
|
|
# different directories, and which one is included by the
|
|
|
|
|
# preprocessor is determined by the ordering of the -I flags.
|
|
|
|
|
GALLIUM_DRIVER_CFLAGS = \
|
|
|
|
|
-I$(srcdir)/include \
|
2014-07-24 11:17:53 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2013-11-01 18:58:27 +00:00
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/drivers \
|
2014-08-16 17:58:25 +01:00
|
|
|
-I$(top_srcdir)/src/gallium/winsys \
|
2013-11-01 18:58:27 +00:00
|
|
|
$(DEFINES) \
|
|
|
|
|
$(VISIBILITY_CFLAGS)
|
|
|
|
|
|
|
|
|
|
GALLIUM_DRIVER_CXXFLAGS = \
|
|
|
|
|
-I$(srcdir)/include \
|
2014-07-24 11:17:53 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2013-11-01 18:58:27 +00:00
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/drivers \
|
2014-08-16 17:58:25 +01:00
|
|
|
-I$(top_srcdir)/src/gallium/winsys \
|
2013-11-01 18:58:27 +00:00
|
|
|
$(DEFINES) \
|
|
|
|
|
$(VISIBILITY_CXXFLAGS)
|
2013-11-09 22:48:44 +00:00
|
|
|
|
2014-06-12 17:10:52 +01:00
|
|
|
GALLIUM_TARGET_CFLAGS = \
|
2014-11-21 15:37:54 -08:00
|
|
|
-I$(top_srcdir)/src \
|
2013-11-09 22:48:44 +00:00
|
|
|
-I$(top_srcdir)/include \
|
2014-06-12 15:41:29 +01:00
|
|
|
-I$(top_srcdir)/src/loader \
|
2013-11-09 22:48:44 +00:00
|
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/drivers \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/winsys \
|
2017-06-29 17:31:57 +02:00
|
|
|
-I$(top_builddir)/src/util/ \
|
|
|
|
|
-I$(top_builddir)/src/gallium/drivers/ \
|
2013-11-09 22:48:44 +00:00
|
|
|
$(DEFINES) \
|
|
|
|
|
$(PTHREAD_CFLAGS) \
|
|
|
|
|
$(LIBDRM_CFLAGS) \
|
|
|
|
|
$(VISIBILITY_CFLAGS)
|
2013-11-09 22:50:47 +00:00
|
|
|
|
2014-04-01 02:34:08 +01:00
|
|
|
GALLIUM_COMMON_LIB_DEPS = \
|
2014-04-01 02:05:57 +01:00
|
|
|
-lm \
|
2017-03-24 16:07:03 -04:00
|
|
|
$(LIBUNWIND_LIBS) \
|
2016-12-08 17:58:21 +00:00
|
|
|
$(LIBSENSORS_LIBS) \
|
2014-04-01 02:05:57 +01:00
|
|
|
$(CLOCK_LIB) \
|
|
|
|
|
$(PTHREAD_LIBS) \
|
|
|
|
|
$(DLOPEN_LIBS)
|
|
|
|
|
|
2016-12-23 20:33:10 +01:00
|
|
|
if HAVE_LIBDRM
|
|
|
|
|
GALLIUM_COMMON_LIB_DEPS += \
|
|
|
|
|
$(LIBDRM_LIBS)
|
|
|
|
|
endif
|
|
|
|
|
|
2018-05-31 19:57:55 -07:00
|
|
|
if HAVE_PLATFORM_ANDROID
|
|
|
|
|
GALLIUM_COMMON_LIB_DEPS += \
|
|
|
|
|
$(ANDROID_LIBS) \
|
|
|
|
|
$(BACKTRACE_LIBS)
|
|
|
|
|
endif
|
|
|
|
|
|
2013-11-02 02:02:47 +00:00
|
|
|
GALLIUM_WINSYS_CFLAGS = \
|
2014-11-21 15:37:54 -08:00
|
|
|
-I$(top_srcdir)/src \
|
2013-11-02 02:02:47 +00:00
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
|
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
|
|
|
$(DEFINES) \
|
|
|
|
|
$(VISIBILITY_CFLAGS)
|
2014-03-11 02:21:21 +00:00
|
|
|
|
2014-05-15 20:08:10 +01:00
|
|
|
|
|
|
|
|
GALLIUM_PIPE_LOADER_WINSYS_LIBS = \
|
2014-11-17 16:58:24 +01:00
|
|
|
$(top_builddir)/src/gallium/winsys/sw/null/libws_null.la \
|
|
|
|
|
$(top_builddir)/src/gallium/winsys/sw/wrapper/libwsw.la
|
2014-05-15 20:08:10 +01:00
|
|
|
|
|
|
|
|
if HAVE_DRISW
|
|
|
|
|
GALLIUM_PIPE_LOADER_WINSYS_LIBS += \
|
|
|
|
|
$(top_builddir)/src/gallium/winsys/sw/dri/libswdri.la
|
|
|
|
|
endif
|
2015-10-14 16:24:55 +01:00
|
|
|
|
|
|
|
|
if HAVE_DRISW_KMS
|
|
|
|
|
GALLIUM_PIPE_LOADER_WINSYS_LIBS += \
|
2015-10-17 23:23:49 +01:00
|
|
|
$(top_builddir)/src/gallium/winsys/sw/kms-dri/libswkmsdri.la \
|
|
|
|
|
$(LIBDRM_LIBS)
|
2015-10-14 16:24:55 +01:00
|
|
|
endif
|