i965: Remove unused depth_mode parameter from translate_tex_format().
[mesa.git] / src / mesa / Makefile.am
index 44ec619cda83e85710aa10b3616f9a51148e7f10..884383652d3eacf7355c4f59a8c5507cf29315ce 100644 (file)
 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 # IN THE SOFTWARE.
 
-SUBDIRS = x86 x86-64 . libdricore drivers
+SUBDIRS = . main/tests
+
+if HAVE_X11_DRIVER
+SUBDIRS += drivers/x11
+endif
+
+if HAVE_DRI
+SUBDIRS += drivers/dri
+endif
+
+if HAVE_OSMESA
+SUBDIRS += drivers/osmesa
+endif
 
 gldir = $(includedir)/GL
 gl_HEADERS = $(top_srcdir)/include/GL/*.h
@@ -39,71 +51,121 @@ main/git_sha1.h: main/git_sha1.h.tmp
        @echo "updating main/git_sha1.h"
        @if ! cmp -s main/git_sha1.h.tmp main/git_sha1.h; then \
                mv main/git_sha1.h.tmp main/git_sha1.h ;\
+       else \
+               rm main/git_sha1.h.tmp ;\
        fi
 
 # include glapi_gen.mk for generating glapi headers for GLES
-TOP = $(top_srcdir)
-GLAPI = $(TOP)/src/mapi/glapi/gen
+GLAPI = $(top_srcdir)/src/mapi/glapi/gen
 include $(GLAPI)/glapi_gen.mk
 
+BUILDDIR = $(builddir)/
+include Makefile.sources
+
 BUILT_SOURCES = \
        main/git_sha1.h \
-       main/api_exec_es1_dispatch.h \
-       main/api_exec_es1_remap_helper.h \
-       main/api_exec_es2_dispatch.h \
-       main/api_exec_es2_remap_helper.h \
-       main/api_exec_es1.c \
-       main/api_exec_es2.c \
-       program/program_parse.tab.c \
-       program/program_parse.tab.h \
-       program/lex.yy.c
+       main/get_hash.h \
+       $(BUILDDIR)program/program_parse.tab.c \
+       $(BUILDDIR)program/lex.yy.c
 CLEANFILES = \
        $(BUILT_SOURCES) \
+       $(BUILDDIR)program/program_parse.tab.h \
        git_sha1.h.tmp
 
-main/api_exec_es1_dispatch.h: $(GLAPI)/gl_and_es_API.xml $(glapi_gen_dispatch_deps)
-       $(call glapi_gen_dispatch,$<,es1)
+GET_HASH_GEN = main/get_hash_generator.py
+
+main/get_hash.h: $(GLAPI)/gl_and_es_API.xml main/get_hash_params.py    \
+                $(GET_HASH_GEN) Makefile
+       $(AM_V_GEN)set -e;                                              \
+       $(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/$(GET_HASH_GEN)            \
+               -f $< > $@.tmp;                                         \
+       mv $@.tmp $@;
+
+noinst_LTLIBRARIES = $(ARCH_LIBS)
+if NEED_LIBMESA
+noinst_LTLIBRARIES += libmesa.la
+else
+check_LTLIBRARIES = libmesa.la
+endif
+if HAVE_GALLIUM
+noinst_LTLIBRARIES += libmesagallium.la
+endif
 
-main/api_exec_es1_remap_helper.h: $(GLAPI)/gl_and_es_API.xml $(glapi_gen_remap_deps)
-       $(call glapi_gen_remap,$<,es1)
+AM_CPPFLAGS = $(DEFINES) $(INCLUDE_DIRS)
+AM_CFLAGS = $(LLVM_CFLAGS) $(VISIBILITY_CFLAGS)
+AM_CXXFLAGS = $(LLVM_CFLAGS) $(VISIBILITY_CXXFLAGS)
 
-main/api_exec_es1.o: main/api_exec_es1_dispatch.h main/api_exec_es1_remap_helper.h
+MESA_ASM_FILES_FOR_ARCH =
 
-main/api_exec_es2_dispatch.h: $(GLAPI)/gl_and_es_API.xml $(glapi_gen_dispatch_deps)
-       $(call glapi_gen_dispatch,$<,es2)
+if HAVE_X86_ASM
+noinst_PROGRAMS = gen_matypes
 
-main/api_exec_es2_remap_helper.h: $(GLAPI)/gl_and_es_API.xml $(glapi_gen_remap_deps)
-       $(call glapi_gen_remap,$<,es2)
+gen_matypes_SOURCES = x86/gen_matypes.c
+BUILT_SOURCES += matypes.h
 
-main/api_exec_es2.o: main/api_exec_es2_dispatch.h main/api_exec_es2_remap_helper.h
+ARCH_LIBS =
 
-main/api_exec_es1.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py main/APIspec.py
-       $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py \
-         -S $(srcdir)/main/APIspec.xml -V GLES1.1 > $@
+if SSE41_SUPPORTED
+ARCH_LIBS += libmesa_sse41.la
+endif
 
-main/api_exec_es2.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py main/APIspec.py
-       $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py \
-         -S $(srcdir)/main/APIspec.xml -V GLES2.0 > $@
+if HAVE_X86_64_ASM
+MESA_ASM_FILES_FOR_ARCH += $(X86_64_FILES)
+AM_CPPFLAGS += -I$(builddir)/x86-64 -I$(srcdir)/x86-64
+else
+MESA_ASM_FILES_FOR_ARCH += $(X86_FILES)
+AM_CPPFLAGS += -I$(builddir)/x86 -I$(srcdir)/x86
+endif
+endif
+if HAVE_SPARC_ASM
+MESA_ASM_FILES_FOR_ARCH += $(SPARC_FILES)
+AM_CPPFLAGS += -I$(builddir)/sparc -I$(srcdir)/sparc
+endif
 
-program/program_parse.tab.c program/program_parse.tab.h: program/program_parse.y
-       $(YACC) -v -d --output=program/program_parse.tab.c $<
+libmesa_la_SOURCES = \
+       $(MESA_FILES) \
+       $(PROGRAM_FILES) \
+        $(MESA_ASM_FILES_FOR_ARCH)
 
-program/lex.yy.c: program/program_lexer.l
-       $(LEX) --never-interactive --outfile=$@ $<
+libmesa_la_LIBADD = \
+        $(top_builddir)/src/glsl/libglsl.la \
+       $(ARCH_LIBS) \
+        $()
 
-all-local:
-       $(MAKE) -f Makefile.old
+libmesagallium_la_SOURCES = \
+       $(MESA_GALLIUM_FILES) \
+       $(PROGRAM_FILES) \
+        $(MESA_ASM_FILES_FOR_ARCH)
 
-install-exec-local:
-       $(MAKE) -f Makefile.old install
+libmesagallium_la_LIBADD = \
+        $(top_builddir)/src/glsl/libglsl.la \
+       $(ARCH_LIBS) \
+        $()
 
-clean-local:
-       $(MAKE) -f Makefile.old clean
+libmesa_sse41_la_SOURCES = \
+       main/streaming-load-memcpy.c
+libmesa_sse41_la_CFLAGS = $(AM_CFLAGS) -msse4.1
 
 pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = gl.pc
+
+$(BUILDDIR)program/lex.yy.c: program/program_lexer.l
+       $(MKDIR_P) $(builddir)/program
+       $(AM_V_GEN) $(LEX) --never-interactive --outfile=$@ $<
+
+$(BUILDDIR)program/program_parse.tab.c $(BUILDDIR)program/program_parse.tab.h: program/program_parse.y
+       $(MKDIR_P) $(builddir)/program
+       $(AM_V_GEN) $(YACC) -p "_mesa_program_" -v -d --output=$(BUILDDIR)program/program_parse.tab.c $<
 
-if HAVE_OSMESA_DRIVER
-pkgconfig_DATA = osmesa.pc
+if GEN_ASM_OFFSETS
+matypes.h: $(gen_matypes_SOURCES)
+       $(AM_V_GEN)$(COMPILE) $< -DASM_OFFSETS -S -o - | \
+               sed -n '/^->/{s:^->::;/[$$]/{s:^:#define :;s:[$$]::};p}' > $@
 else
-pkgconfig_DATA = gl.pc
+matypes.h: gen_matypes
+       $(AM_V_GEN)./gen_matypes > $@
 endif
+
+# Emacs tags
+tags:
+       etags `find . -name \*.[ch]` $(top_srcdir)/include/GL/*.h