From: Tom Stellard Date: Fri, 13 Apr 2012 18:29:49 +0000 (-0400) Subject: r600g: Use automake to generate Makefile X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6077b347ae72af548667cc06cfff99e7e12c6d9f;p=mesa.git r600g: Use automake to generate Makefile --- diff --git a/configure.ac b/configure.ac index 9d6cbeb96dc..4f84b774c44 100644 --- a/configure.ac +++ b/configure.ac @@ -1993,6 +1993,7 @@ dnl Substitute the config AC_CONFIG_FILES([configs/autoconf src/gallium/drivers/Makefile src/gallium/drivers/r300/Makefile + src/gallium/drivers/r600/Makefile src/gbm/Makefile src/gbm/main/gbm.pc src/egl/drivers/Makefile diff --git a/src/gallium/drivers/r600/Makefile b/src/gallium/drivers/r600/Makefile deleted file mode 100644 index e15e2ff2667..00000000000 --- a/src/gallium/drivers/r600/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -TOP = ../../../.. -include $(TOP)/configs/current - -LIBNAME = r600 - -#This is for libdrm include path -CFLAGS+=$(RADEON_CFLAGS) - -LIBRARY_INCLUDES = -I$(TOP)/include - -# get C_SOURCES -include Makefile.sources - -include ../../Makefile.template - -# FIXME: Remove when this driver is converted to automake. -all: default 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)