diff options
author | Tom Stellard <[email protected]> | 2012-04-13 14:29:49 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-04-17 09:54:02 -0400 |
commit | 6077b347ae72af548667cc06cfff99e7e12c6d9f (patch) | |
tree | 69a6f292952e747a6870f2a1b2c6810af60ee72b /src/gallium/drivers/r600/Makefile.am | |
parent | 35f2fb70d3826df70fa2f53af05339137cddefc8 (diff) |
r600g: Use automake to generate Makefile
Diffstat (limited to 'src/gallium/drivers/r600/Makefile.am')
-rw-r--r-- | src/gallium/drivers/r600/Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/Makefile.am b/src/gallium/drivers/r600/Makefile.am new file mode 100644 index 00000000000..8acd36ac865 --- /dev/null +++ b/src/gallium/drivers/r600/Makefile.am @@ -0,0 +1,17 @@ +include Makefile.sources + +noinst_LIBRARIES = libr600.a + +AM_CFLAGS = \ + -I$(top_srcdir)/src/gallium/include \ + -I$(top_srcdir)/src/gallium/auxiliary \ + -I$(top_srcdir)/src/gallium/drivers \ + -I$(top_srcdir)/include \ + $(RADEON_CFLAGS) \ + $(DEFINES) \ + $(ASM_FLAGS) \ + $(PIC_FLAGS) \ + $(VISIBILITY_CFLAGS) + +libr600_a_SOURCES = \ + $(C_SOURCES) |