nv50,nvc0: buffer resources can be bound as other things down the line
[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 EXTRA_gallium_dri_la_DEPENDENCIES = \
63 dri.sym \
64 $(top_srcdir)/src/gallium/targets/dri-vdpau.dyn
65 EXTRA_DIST = SConscript
66
67 TARGET_DRIVERS =
68 TARGET_CPPFLAGS =
69 TARGET_LIB_DEPS = $(top_builddir)/src/loader/libloader.la
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 include $(top_srcdir)/src/gallium/drivers/r300/Automake.inc
78 include $(top_srcdir)/src/gallium/drivers/r600/Automake.inc
79 include $(top_srcdir)/src/gallium/drivers/radeonsi/Automake.inc
80
81 include $(top_srcdir)/src/gallium/drivers/svga/Automake.inc
82
83 include $(top_srcdir)/src/gallium/drivers/freedreno/Automake.inc
84
85 include $(top_srcdir)/src/gallium/drivers/vc4/Automake.inc
86
87 include $(top_srcdir)/src/gallium/drivers/softpipe/Automake.inc
88 include $(top_srcdir)/src/gallium/drivers/llvmpipe/Automake.inc
89
90 if HAVE_GALLIUM_STATIC_TARGETS
91
92 gallium_dri_la_SOURCES += target.c
93 gallium_dri_la_CPPFLAGS = $(AM_CPPFLAGS) $(TARGET_CPPFLAGS)
94 gallium_dri_la_LIBADD += $(TARGET_LIB_DEPS) \
95 $(TARGET_RADEON_WINSYS) $(TARGET_RADEON_COMMON)
96
97 else # HAVE_GALLIUM_STATIC_TARGETS
98
99 gallium_dri_la_LIBADD += \
100 $(top_builddir)/src/gallium/auxiliary/pipe-loader/libpipe_loader.la \
101 $(GALLIUM_PIPE_LOADER_WINSYS_LIBS) \
102 $(GALLIUM_PIPE_LOADER_LIBS)
103
104 endif # HAVE_GALLIUM_STATIC_TARGETS
105
106 if HAVE_MESA_LLVM
107 gallium_dri_la_LIBADD += $(LLVM_LIBS)
108 gallium_dri_la_LDFLAGS += $(LLVM_LDFLAGS)
109 endif
110
111 if HAVE_COMPAT_SYMLINKS
112 # Add a link to allow setting LIBGL_DRIVERS_PATH to /lib/gallium of the build tree.
113 all-local: $(dri_LTLIBRARIES)
114 $(AM_V_GEN)link_dir=$(top_builddir)/$(LIB_DIR)/gallium; \
115 $(MKDIR_P) $${link_dir}; \
116 for i in $(TARGET_DRIVERS); do \
117 j=gallium_dri.so; \
118 k=$${i}_dri.so; \
119 ln -f .libs/$${j} \
120 $${link_dir}/$${k}; \
121 done
122 endif
123
124 # hardlink each megadriver instance, but don't actually have
125 # gallium_dri.so in the set of final installed files.
126 install-data-hook:
127 $(AM_V_GEN)dest_dir=$(DESTDIR)/$(dridir); \
128 for i in $(TARGET_DRIVERS); do \
129 j=gallium_dri.so; \
130 k=$${i}_dri.so; \
131 ln -f $${dest_dir}/$${j} \
132 $${dest_dir}/$${k}; \
133 done; \
134 $(RM) -f $$dest_dir/gallium_dri.*