gallium/svga: add automake target 'template'
[mesa.git] / src / gallium / targets / dri / Makefile.am
1 include $(top_srcdir)/src/gallium/Automake.inc
2
3 AM_CFLAGS = \
4 -I$(top_srcdir)/src/mapi \
5 -I$(top_srcdir)/src/mesa \
6 -I$(top_srcdir)/src/mesa/drivers/dri/common \
7 -I$(top_srcdir)/src/gallium/state_trackers/dri \
8 $(GALLIUM_TARGET_CFLAGS)
9
10 AM_CPPFLAGS = \
11 $(DEFINES) \
12 -DDRI_TARGET \
13 -DGALLIUM_GALAHAD \
14 -DGALLIUM_NOOP \
15 -DGALLIUM_RBUG \
16 -DGALLIUM_TRACE
17
18 dridir = $(DRI_DRIVER_INSTALL_DIR)
19 dri_LTLIBRARIES = gallium_dri.la
20
21 nodist_EXTRA_gallium_dri_la_SOURCES = dummy.cpp
22 gallium_dri_la_SOURCES =
23
24 gallium_dri_la_LDFLAGS = \
25 -shared \
26 -shrext .so \
27 -module \
28 -avoid-version \
29 $(GC_SECTIONS)
30
31 if HAVE_LD_VERSION_SCRIPT
32 gallium_dri_la_LDFLAGS += \
33 -Wl,--version-script=$(top_srcdir)/src/gallium/targets/dri/dri.sym
34 endif # HAVE_LD_VERSION_SCRIPT
35
36 if HAVE_LD_DYNAMIC_LIST
37 gallium_dri_la_LDFLAGS += \
38 -Wl,--dynamic-list=$(top_srcdir)/src/gallium/targets/dri-vdpau.dyn
39 endif # HAVE_LD_DYNAMIC_LIST
40
41 gallium_dri_la_LIBADD = \
42 $(top_builddir)/src/mesa/libmesagallium.la \
43 $(top_builddir)/src/mesa/drivers/dri/common/libdricommon.la \
44 $(top_builddir)/src/mesa/drivers/dri/common/libmegadriver_stub.la \
45 $(top_builddir)/src/gallium/state_trackers/dri/libdri.la \
46 $(top_builddir)/src/gallium/auxiliary/libgallium.la \
47 $(top_builddir)/src/gallium/drivers/galahad/libgalahad.la \
48 $(top_builddir)/src/gallium/drivers/noop/libnoop.la \
49 $(top_builddir)/src/gallium/drivers/rbug/librbug.la \
50 $(top_builddir)/src/gallium/drivers/trace/libtrace.la \
51 $(SELINUX_LIBS) \
52 $(EXPAT_LIBS) \
53 $(LIBDRM_LIBS) \
54 $(GALLIUM_COMMON_LIB_DEPS)
55
56 # XXX: Temporary allow duplicated symbols, as the loader pulls in xmlconfig.c
57 # which already provides driParse* and driQuery* amongst others.
58 # Remove this hack as we come up with a cleaner solution.
59 gallium_dri_la_LDFLAGS += \
60 -Wl,--allow-multiple-definition
61
62 MEGADRIVERS =
63 STATIC_TARGET_CPPFLAGS =
64 STATIC_TARGET_LIB_DEPS = \
65 $(top_builddir)/src/loader/libloader.la
66
67 TARGET_DRIVERS =
68 TARGET_CPPFLAGS =
69 TARGET_LIB_DEPS =
70
71 include $(top_srcdir)/src/gallium/drivers/i915/Automake.inc
72
73 include $(top_srcdir)/src/gallium/drivers/ilo/Automake.inc
74
75 include $(top_srcdir)/src/gallium/drivers/nouveau/Automake.inc
76
77 if NEED_RADEON_DRM_WINSYS
78 STATIC_TARGET_LIB_DEPS += \
79 $(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
80 endif
81
82 if HAVE_GALLIUM_RADEON_COMMON
83 STATIC_TARGET_LIB_DEPS += \
84 $(top_builddir)/src/gallium/drivers/radeon/libradeon.la
85 endif
86
87 if HAVE_GALLIUM_R300
88 MEGADRIVERS += r300
89 STATIC_TARGET_CPPFLAGS += -DGALLIUM_R300
90 STATIC_TARGET_LIB_DEPS += \
91 $(top_builddir)/src/gallium/drivers/r300/libr300.la \
92 $(RADEON_LIBS)
93 endif
94
95 if HAVE_GALLIUM_R600
96 MEGADRIVERS += r600
97 STATIC_TARGET_CPPFLAGS += -DGALLIUM_R600
98 STATIC_TARGET_LIB_DEPS += \
99 $(top_builddir)/src/gallium/drivers/r600/libr600.la \
100 $(RADEON_LIBS)
101 endif
102
103 if HAVE_GALLIUM_RADEONSI
104 MEGADRIVERS += radeonsi
105 STATIC_TARGET_CPPFLAGS += -DGALLIUM_RADEONSI
106 STATIC_TARGET_LIB_DEPS += \
107 $(top_builddir)/src/gallium/drivers/radeonsi/libradeonsi.la \
108 $(RADEON_LIBS)
109 endif
110
111 include $(top_srcdir)/src/gallium/drivers/svga/Automake.inc
112
113 include $(top_srcdir)/src/gallium/drivers/freedreno/Automake.inc
114
115 if HAVE_GALLIUM_VC4
116 MEGADRIVERS += vc4
117 STATIC_TARGET_CPPFLAGS += -DGALLIUM_VC4
118 STATIC_TARGET_LIB_DEPS += \
119 $(top_builddir)/src/gallium/winsys/vc4/drm/libvc4drm.la \
120 $(top_builddir)/src/gallium/drivers/vc4/libvc4.la
121
122 if USE_VC4_SIMULATOR
123 STATIC_TARGET_CPPFLAGS += -DUSE_VC4_SIMULATOR
124 endif
125 endif
126
127 if HAVE_GALLIUM_SOFTPIPE
128 MEGADRIVERS += swrast
129 STATIC_TARGET_CPPFLAGS += -DGALLIUM_SOFTPIPE
130 STATIC_TARGET_LIB_DEPS += \
131 $(top_builddir)/src/gallium/winsys/sw/dri/libswdri.la \
132 $(top_builddir)/src/gallium/drivers/softpipe/libsoftpipe.la
133
134 if HAVE_DRI2
135 MEGADRIVERS += kms_swrast
136 STATIC_TARGET_LIB_DEPS += \
137 $(top_builddir)/src/gallium/winsys/sw/kms-dri/libswkmsdri.la
138 endif
139 endif
140
141 if NEED_GALLIUM_LLVMPIPE_DRIVER
142 STATIC_TARGET_CPPFLAGS += -DGALLIUM_LLVMPIPE
143 STATIC_TARGET_LIB_DEPS += \
144 $(top_builddir)/src/gallium/drivers/llvmpipe/libllvmpipe.la
145 endif
146
147 if HAVE_GALLIUM_STATIC_TARGETS
148
149 gallium_dri_la_SOURCES += target.c
150 AM_CPPFLAGS += $(STATIC_TARGET_CPPFLAGS) $(TARGET_CPPFLAGS)
151 gallium_dri_la_LIBADD += $(STATIC_TARGET_LIB_DEPS) $(TARGET_LIB_DEPS)
152
153 else # HAVE_GALLIUM_STATIC_TARGETS
154
155 gallium_dri_la_LIBADD += \
156 $(top_builddir)/src/gallium/auxiliary/pipe-loader/libpipe_loader.la \
157 $(GALLIUM_PIPE_LOADER_WINSYS_LIBS) \
158 $(GALLIUM_PIPE_LOADER_LIBS)
159
160 endif # HAVE_GALLIUM_STATIC_TARGETS
161
162 if HAVE_MESA_LLVM
163 gallium_dri_la_LIBADD += $(LLVM_LIBS)
164 gallium_dri_la_LDFLAGS += $(LLVM_LDFLAGS)
165 endif
166
167 if HAVE_COMPAT_SYMLINKS
168 # Add a link to allow setting LIBGL_DRIVERS_PATH to /lib/gallium of the build tree.
169 all-local: $(dri_LTLIBRARIES)
170 $(AM_V_GEN)link_dir=$(top_builddir)/$(LIB_DIR)/gallium; \
171 $(MKDIR_P) $${link_dir}; \
172 for i in $(MEGADRIVERS) $(TARGET_DRIVERS); do \
173 j=gallium_dri.so; \
174 k=$${i}_dri.so; \
175 ln -f .libs/$${j} \
176 $${link_dir}/$${k}; \
177 done
178 endif
179
180 # hardlink each megadriver instance, but don't actually have
181 # gallium_dri.so in the set of final installed files.
182 install-data-hook:
183 $(AM_V_GEN)dest_dir=$(DESTDIR)/$(dridir); \
184 for i in $(MEGADRIVERS) $(TARGET_DRIVERS); do \
185 j=gallium_dri.so; \
186 k=$${i}_dri.so; \
187 ln -f $${dest_dir}/$${j} \
188 $${dest_dir}/$${k}; \
189 done; \
190 $(RM) -f $$dest_dir/gallium_dri.*