targets/dri: Remove unnecessary variables in install-data-hook.
[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/libgalliumvl_stub.la \
47 $(top_builddir)/src/gallium/auxiliary/libgallium.la \
48 $(top_builddir)/src/gallium/drivers/galahad/libgalahad.la \
49 $(top_builddir)/src/gallium/drivers/noop/libnoop.la \
50 $(top_builddir)/src/gallium/drivers/rbug/librbug.la \
51 $(top_builddir)/src/gallium/drivers/trace/libtrace.la \
52 $(SELINUX_LIBS) \
53 $(EXPAT_LIBS) \
54 $(LIBDRM_LIBS) \
55 $(GALLIUM_COMMON_LIB_DEPS)
56
57 # XXX: Temporary allow duplicated symbols, as the loader pulls in xmlconfig.c
58 # which already provides driParse* and driQuery* amongst others.
59 # Remove this hack as we come up with a cleaner solution.
60 gallium_dri_la_LDFLAGS += \
61 -Wl,--allow-multiple-definition
62
63 EXTRA_gallium_dri_la_DEPENDENCIES = \
64 dri.sym \
65 $(top_srcdir)/src/gallium/targets/dri-vdpau.dyn
66 EXTRA_DIST = \
67 SConscript \
68 dri.sym \
69 $(top_srcdir)/src/gallium/targets/dri-vdpau.dyn
70
71 TARGET_DRIVERS =
72 TARGET_CPPFLAGS =
73 TARGET_LIB_DEPS = $(top_builddir)/src/loader/libloader.la
74
75 include $(top_srcdir)/src/gallium/drivers/i915/Automake.inc
76
77 include $(top_srcdir)/src/gallium/drivers/ilo/Automake.inc
78
79 include $(top_srcdir)/src/gallium/drivers/nouveau/Automake.inc
80
81 include $(top_srcdir)/src/gallium/drivers/r300/Automake.inc
82 include $(top_srcdir)/src/gallium/drivers/r600/Automake.inc
83 include $(top_srcdir)/src/gallium/drivers/radeonsi/Automake.inc
84
85 include $(top_srcdir)/src/gallium/drivers/svga/Automake.inc
86
87 include $(top_srcdir)/src/gallium/drivers/freedreno/Automake.inc
88
89 include $(top_srcdir)/src/gallium/drivers/vc4/Automake.inc
90
91 include $(top_srcdir)/src/gallium/drivers/softpipe/Automake.inc
92 include $(top_srcdir)/src/gallium/drivers/llvmpipe/Automake.inc
93
94 if HAVE_GALLIUM_STATIC_TARGETS
95
96 gallium_dri_la_SOURCES += target.c
97 gallium_dri_la_CPPFLAGS = $(AM_CPPFLAGS) $(TARGET_CPPFLAGS)
98 gallium_dri_la_LIBADD += $(TARGET_LIB_DEPS) \
99 $(TARGET_RADEON_WINSYS) $(TARGET_RADEON_COMMON)
100
101 else # HAVE_GALLIUM_STATIC_TARGETS
102
103 gallium_dri_la_LIBADD += \
104 $(top_builddir)/src/gallium/auxiliary/pipe-loader/libpipe_loader.la \
105 $(GALLIUM_PIPE_LOADER_WINSYS_LIBS) \
106 $(GALLIUM_PIPE_LOADER_LIBS)
107
108 endif # HAVE_GALLIUM_STATIC_TARGETS
109
110 if HAVE_MESA_LLVM
111 gallium_dri_la_LIBADD += $(LLVM_LIBS)
112 gallium_dri_la_LDFLAGS += $(LLVM_LDFLAGS)
113 endif
114
115 if HAVE_COMPAT_SYMLINKS
116 # Add a link to allow setting LIBGL_DRIVERS_PATH to /lib/gallium of the build tree.
117 all-local: $(dri_LTLIBRARIES)
118 $(AM_V_GEN)link_dir=$(top_builddir)/$(LIB_DIR)/gallium; \
119 $(MKDIR_P) $${link_dir}; \
120 for i in $(TARGET_DRIVERS); do \
121 ln -f .libs/gallium_dri.so \
122 $${link_dir}/$${i}_dri.so; \
123 done
124 endif
125
126 # hardlink each megadriver instance, but don't actually have
127 # gallium_dri.so in the set of final installed files.
128 install-data-hook:
129 for i in $(TARGET_DRIVERS); do \
130 ln -f $(DESTDIR)$(dridir)/gallium_dri.so \
131 $(DESTDIR)$(dridir)/$${i}_dri.so; \
132 done; \
133 $(RM) -f $(DESTDIR)$(dridir)/gallium_dri.*