diff options
author | Tom Stellard <[email protected]> | 2012-08-24 11:44:57 -0700 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2013-01-10 22:01:06 +0100 |
commit | 34a615018844814d285c9c787ff46539b8adc9aa (patch) | |
tree | 57c72a66aad83df6de1a76a5b9112f7dcc7e32a3 /src/gallium/winsys/radeon/drm/Makefile.am | |
parent | 8dc4048b3bdb4dc3a5b3d392dcde65eb37a87965 (diff) |
radeon/winsys: Convert to automake
Diffstat (limited to 'src/gallium/winsys/radeon/drm/Makefile.am')
-rw-r--r-- | src/gallium/winsys/radeon/drm/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/gallium/winsys/radeon/drm/Makefile.am b/src/gallium/winsys/radeon/drm/Makefile.am new file mode 100644 index 00000000000..5b2506b35eb --- /dev/null +++ b/src/gallium/winsys/radeon/drm/Makefile.am @@ -0,0 +1,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 |