Makefile.am revision bfd7d6f58b47984853cf0831057e84a617de25ed
1# Copyright © 2012 Intel Corporation 2# 3# Permission is hereby granted, free of charge, to any person obtaining a 4# copy of this software and associated documentation files (the "Software"), 5# to deal in the Software without restriction, including without limitation 6# the rights to use, copy, modify, merge, publish, distribute, sublicense, 7# and/or sell copies of the Software, and to permit persons to whom the 8# Software is furnished to do so, subject to the following conditions: 9# 10# The above copyright notice and this permission notice (including the next 11# paragraph) shall be included in all copies or substantial portions of the 12# Software. 13# 14# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 20# IN THE SOFTWARE. 21 22SUBDIRS = x86 x86-64 . libdricore drivers 23 24gldir = $(includedir)/GL 25gl_HEADERS = $(top_srcdir)/include/GL/*.h 26 27.PHONY: main/git_sha1.h.tmp 28main/git_sha1.h.tmp: 29 @touch main/git_sha1.h.tmp 30 @if test -d ../../.git; then \ 31 if which git > /dev/null; then \ 32 git log -n 1 --oneline | \ 33 sed 's/^\([^ ]*\) .*/#define MESA_GIT_SHA1 "git-\1"/' \ 34 > main/git_sha1.h.tmp ; \ 35 fi \ 36 fi 37 38main/git_sha1.h: main/git_sha1.h.tmp 39 @echo "updating main/git_sha1.h" 40 @if ! cmp -s main/git_sha1.h.tmp main/git_sha1.h; then \ 41 mv main/git_sha1.h.tmp main/git_sha1.h ;\ 42 fi 43 44# include glapi_gen.mk for generating glapi headers for GLES 45GLAPI = $(top_srcdir)/src/mapi/glapi/gen 46include $(GLAPI)/glapi_gen.mk 47 48BUILT_SOURCES = \ 49 main/git_sha1.h \ 50 main/api_exec_es1_dispatch.h \ 51 main/api_exec_es1_remap_helper.h \ 52 main/api_exec_es2_dispatch.h \ 53 main/api_exec_es2_remap_helper.h \ 54 main/api_exec_es1.c \ 55 main/api_exec_es2.c \ 56 program/program_parse.tab.c \ 57 program/program_parse.tab.h \ 58 program/lex.yy.c 59CLEANFILES = \ 60 $(BUILT_SOURCES) \ 61 git_sha1.h.tmp 62 63main/api_exec_es1_dispatch.h: $(GLAPI)/gl_and_es_API.xml $(glapi_gen_dispatch_deps) 64 $(call glapi_gen_dispatch,$<,es1) 65 66main/api_exec_es1_remap_helper.h: $(GLAPI)/gl_and_es_API.xml $(glapi_gen_remap_deps) 67 $(call glapi_gen_remap,$<,es1) 68 69main/api_exec_es1.o: main/api_exec_es1_dispatch.h main/api_exec_es1_remap_helper.h 70 71main/api_exec_es2_dispatch.h: $(GLAPI)/gl_and_es_API.xml $(glapi_gen_dispatch_deps) 72 $(call glapi_gen_dispatch,$<,es2) 73 74main/api_exec_es2_remap_helper.h: $(GLAPI)/gl_and_es_API.xml $(glapi_gen_remap_deps) 75 $(call glapi_gen_remap,$<,es2) 76 77main/api_exec_es2.o: main/api_exec_es2_dispatch.h main/api_exec_es2_remap_helper.h 78 79main/api_exec_es1.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py main/APIspec.py 80 $(AM_V_GEN) $(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/main/es_generator.py \ 81 -S $(srcdir)/main/APIspec.xml -V GLES1.1 > $@ 82 83main/api_exec_es2.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py main/APIspec.py 84 $(AM_V_GEN) $(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/main/es_generator.py \ 85 -S $(srcdir)/main/APIspec.xml -V GLES2.0 > $@ 86 87program/program_parse.tab.c program/program_parse.tab.h: program/program_parse.y 88 $(MKDIR_P) program 89 $(AM_V_GEN) $(YACC) -v -d --output=program/program_parse.tab.c $< 90 91program/lex.yy.c: program/program_lexer.l 92 $(MKDIR_P) program 93 $(AM_V_GEN) $(LEX) --never-interactive --outfile=$@ $< 94 95noinst_LTLIBRARIES = libmesa.la 96if HAVE_GALLIUM 97noinst_LTLIBRARIES += libmesagallium.la 98endif 99 100SRCDIR = $(top_srcdir)/src/mesa/ 101BUILDDIR = $(top_builddir)/src/mesa/ 102include sources.mak 103 104AM_CPPFLAGS = $(API_DEFINES) $(DEFINES) $(INCLUDE_DIRS) 105AM_CFLAGS = $(LLVM_CFLAGS) 106AM_CXXFLAGS = $(LLVM_CFLAGS) 107 108# cannot just add $(MESA_ASM_FILES) to libmesa_la_SOURCES as it contains a configure substitution 109MESA_ASM_FILES_FOR_ARCH = 110 111if HAVE_X86_ASM 112MESA_ASM_FILES_FOR_ARCH += $(X86_FILES) 113AM_CPPFLAGS += \ 114 -I$(top_builddir)/src/mesa/x86 \ 115 -I$(top_srcdir)/src/mesa/x86 116endif 117if HAVE_X86_64_ASM 118MESA_ASM_FILES_FOR_ARCH += $(X86_64_FILES) 119AM_CPPFLAGS += \ 120 -I$(top_builddir)/src/mesa/x86-64 \ 121 -I$(top_srcdir)/src/mesa/x86-64 122endif 123if HAVE_SPARC_ASM 124MESA_ASM_FILES_FOR_ARCH += $(SPARC_FILES) 125AM_CPPFLAGS += \ 126 -I$(top_builddir)/src/mesa/sparc \ 127 -I$(top_srcdir)/src/mesa/sparc 128endif 129 130libmesa_la_SOURCES = \ 131 $(MESA_FILES) \ 132 $(MESA_CXX_FILES) \ 133 $(MESA_ASM_FILES_FOR_ARCH) 134 135libmesa_la_LIBADD = $(top_builddir)/src/glsl/libglsl.la 136libmesa_la_LDFLAGS = 137 138libmesagallium_la_SOURCES = \ 139 $(MESA_GALLIUM_FILES) \ 140 $(MESA_GALLIUM_CXX_FILES) \ 141 $(MESA_ASM_FILES_FOR_ARCH) 142 143libmesagallium_la_LIBADD = $(top_builddir)/src/glsl/libglsl.la 144libmesagallium_la_LDFLAGS = 145 146# Provide compatibility with scripts for the old Mesa build system for 147# a while by putting a link to the library in the current directory. 148all-local: $(noinst_LTLIBRARIES) 149 ln -f .libs/libmesa.a . 150if HAVE_GALLIUM 151 ln -f .libs/libmesagallium.a . 152endif 153 154CLEANFILES += libmesa.a libmesagallium.a 155 156pkgconfigdir = $(libdir)/pkgconfig 157pkgconfig_DATA = gl.pc 158 159# Emacs tags 160tags: 161 etags `find . -name \*.[ch]` $(TOP)/include/GL/*.h 162