blob: 5b2506b35eb7673e648b44347ef81e9d2e54c88b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include Makefile.sources
include $(top_srcdir)/src/gallium/Automake.inc
AM_CFLAGS = \
-I$(top_srcdir)/include \
$(GALLIUM_CFLAGS) \
$(RADEON_CFLAGS)
noinst_LTLIBRARIES = libradeonwinsys.la
libradeonwinsys_la_SOURCES = $(C_SOURCES)
#XXX: Delete this when all targets using the radeon winsys are converted to automake.
all-local: libradeonwinsys.la
ln -f $(builddir)/.libs/libradeonwinsys.a $(builddir)/libradeonwinsys.a
|