gallium: remove library_path argument from pipe_loader_create_screen()
[mesa.git] / src / gallium / auxiliary / pipe-loader / Makefile.am
1 include Makefile.sources
2 include $(top_srcdir)/src/gallium/Automake.inc
3
4 # XXX: check if we need the gallium/winsys include
5 AM_CFLAGS = \
6 -I$(top_srcdir)/src/loader \
7 -I$(top_srcdir)/src/gallium/winsys \
8 -DPIPE_SEARCH_DIR=\"$(libdir)/gallium-pipe\" \
9 $(GALLIUM_PIPE_LOADER_DEFINES) \
10 $(GALLIUM_CFLAGS) \
11 $(VISIBILITY_CFLAGS)
12
13 noinst_LTLIBRARIES = libpipe_loader.la
14
15 libpipe_loader_la_SOURCES = \
16 $(COMMON_SOURCES)
17
18 if HAVE_LIBDRM
19 AM_CFLAGS += \
20 $(LIBDRM_CFLAGS)
21
22 libpipe_loader_la_SOURCES += \
23 $(DRM_SOURCES)
24
25 libpipe_loader_la_LIBADD = \
26 $(top_builddir)/src/loader/libloader.la
27
28 endif
29