blob: 9adcef1f53f249e33d524d3daffccca5729217f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include $(top_srcdir)/src/gallium/Automake.inc
AM_CFLAGS = \
$(GALLIUM_CFLAGS)
noinst_LTLIBRARIES = libtrace.la
libtrace_la_SOURCES = \
tr_context.c \
tr_dump.c \
tr_dump_state.c \
tr_screen.c \
tr_texture.c
#XXX: Delete this when all targets using libtrace are converted to automake
all-local: libtrace.la
ln -f $(builddir)/.libs/libtrace.a $(builddir)/libtrace.a
|