automake: remove empty GALLIUM_PIPE_LOADER_LIBS
[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 $(GALLIUM_PIPE_LOADER_DEFINES) \
9 $(GALLIUM_CFLAGS) \
10 $(VISIBILITY_CFLAGS)
11
12 noinst_LTLIBRARIES = libpipe_loader.la
13
14 libpipe_loader_la_SOURCES = \
15 $(COMMON_SOURCES)
16
17 if HAVE_DRM_LOADER_GALLIUM
18 AM_CFLAGS += \
19 $(LIBDRM_CFLAGS)
20
21 libpipe_loader_la_SOURCES += \
22 $(DRM_SOURCES)
23
24 libpipe_loader_la_LIBADD = \
25 $(top_builddir)/src/loader/libloader.la
26
27 endif
28