tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
GALLIUM_CFLAGS = \
   -I$(top_srcdir)/include \
   -I$(top_srcdir)/src \
   -I$(top_srcdir)/src/gallium/include \
   -I$(top_srcdir)/src/gallium/auxiliary \
   $(DEFINES)
 
# 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 \
   -I$(top_srcdir)/src \
   -I$(top_srcdir)/include \
   -I$(top_srcdir)/src/gallium/include \
   -I$(top_srcdir)/src/gallium/auxiliary \
   -I$(top_srcdir)/src/gallium/drivers \
   -I$(top_srcdir)/src/gallium/winsys \
   $(DEFINES) \
   $(VISIBILITY_CFLAGS)
 
GALLIUM_DRIVER_CXXFLAGS = \
   -I$(srcdir)/include \
   -I$(top_srcdir)/src \
   -I$(top_srcdir)/include \
   -I$(top_srcdir)/src/gallium/include \
   -I$(top_srcdir)/src/gallium/auxiliary \
   -I$(top_srcdir)/src/gallium/drivers \
   -I$(top_srcdir)/src/gallium/winsys \
   $(DEFINES) \
   $(VISIBILITY_CXXFLAGS)
 
GALLIUM_TARGET_CFLAGS = \
   -I$(top_srcdir)/src \
   -I$(top_srcdir)/include \
   -I$(top_srcdir)/src/loader \
   -I$(top_srcdir)/src/gallium/include \
   -I$(top_srcdir)/src/gallium/auxiliary \
   -I$(top_srcdir)/src/gallium/drivers \
   -I$(top_srcdir)/src/gallium/winsys \
   -I$(top_builddir)/src/util/ \
   -I$(top_builddir)/src/gallium/drivers/ \
   $(DEFINES) \
   $(PTHREAD_CFLAGS) \
   $(LIBDRM_CFLAGS) \
   $(VISIBILITY_CFLAGS)
 
GALLIUM_COMMON_LIB_DEPS = \
   -lm \
   $(LIBUNWIND_LIBS) \
   $(LIBSENSORS_LIBS) \
   $(CLOCK_LIB) \
   $(PTHREAD_LIBS) \
   $(DLOPEN_LIBS)
 
if HAVE_LIBDRM
GALLIUM_COMMON_LIB_DEPS += \
   $(LIBDRM_LIBS)
endif
 
GALLIUM_WINSYS_CFLAGS = \
   -I$(top_srcdir)/src \
   -I$(top_srcdir)/include \
   -I$(top_srcdir)/src/gallium/include \
   -I$(top_srcdir)/src/gallium/auxiliary \
   $(DEFINES) \
   $(VISIBILITY_CFLAGS)
 
 
GALLIUM_PIPE_LOADER_WINSYS_LIBS = \
   $(top_builddir)/src/gallium/winsys/sw/null/libws_null.la \
   $(top_builddir)/src/gallium/winsys/sw/wrapper/libwsw.la
 
if HAVE_DRISW
GALLIUM_PIPE_LOADER_WINSYS_LIBS += \
   $(top_builddir)/src/gallium/winsys/sw/dri/libswdri.la
endif
 
if HAVE_DRISW_KMS
GALLIUM_PIPE_LOADER_WINSYS_LIBS += \
   $(top_builddir)/src/gallium/winsys/sw/kms-dri/libswkmsdri.la \
   $(LIBDRM_LIBS)
endif