OSDN Git Service

android: set driver name to debug.mesa.driver
[android-x86/external-mesa.git] / Makefile.am
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
22 SUBDIRS = src
23
24 ACLOCAL_AMFLAGS = -I m4
25
26 doxygen:
27         cd doxygen && $(MAKE)
28
29 check-local:
30         $(MAKE) -C src/mapi/glapi/tests check
31         $(MAKE) -C src/mapi/shared-glapi/tests check
32         $(MAKE) -C src/mesa/main/tests check
33         $(MAKE) -C src/glx/tests check
34
35 .PHONY: doxygen
36
37 # Rules for making release tarballs
38
39 PACKAGE_DIR = Mesa-$(PACKAGE_VERSION)
40 PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION)
41
42 EXTRA_FILES = \
43         aclocal.m4                                      \
44         configure                                       \
45         bin/ar-lib                                      \
46         bin/compile                                     \
47         bin/config.sub                                  \
48         bin/config.guess                                \
49         bin/depcomp                                     \
50         bin/install-sh                                  \
51         bin/ltmain.sh                                   \
52         bin/missing                                     \
53         bin/ylwrap                                      \
54         src/glsl/glsl_parser.cpp                        \
55         src/glsl/glsl_parser.h                          \
56         src/glsl/glsl_lexer.cpp                         \
57         src/glsl/glcpp/glcpp-lex.c                      \
58         src/glsl/glcpp/glcpp-parse.c                    \
59         src/glsl/glcpp/glcpp-parse.h                    \
60         src/mesa/main/api_exec_es1.c                    \
61         src/mesa/main/api_exec_es1_dispatch.h           \
62         src/mesa/main/api_exec_es1_remap_helper.h       \
63         src/mesa/main/api_exec_es2.c                    \
64         src/mesa/main/api_exec_es2_dispatch.h           \
65         src/mesa/main/api_exec_es2_remap_helper.h       \
66         src/mesa/program/lex.yy.c                       \
67         src/mesa/program/program_parse.tab.c            \
68         src/mesa/program/program_parse.tab.h            \
69         `git ls-files | grep "Makefile.am" | sed -e "s/Makefile.am/Makefile.in/"`
70
71
72 IGNORE_FILES = \
73         -x autogen.sh
74
75
76 parsers: configure
77         $(MAKE) -C src/glsl glsl_parser.cpp glsl_parser.h glsl_lexer.cpp glcpp/glcpp-lex.c glcpp/glcpp-parse.c glcpp/glcpp-parse.h
78         $(MAKE) -C src/mesa/program lex.yy.c program_parse.tab.c program_parse.tab.h
79
80 # Everything for new a Mesa release:
81 ARCHIVES = $(PACKAGE_NAME).tar.gz \
82         $(PACKAGE_NAME).tar.bz2 \
83         $(PACKAGE_NAME).zip
84
85 tarballs: md5
86         rm -f ../$(PACKAGE_DIR) $(PACKAGE_NAME).tar
87
88 manifest.txt: .git
89         ( \
90                 ls -1 $(EXTRA_FILES) ; \
91                 git ls-files $(IGNORE_FILES) \
92         ) | sed -e '/^\(.*\/\)\?\./d' -e "s@^@$(PACKAGE_DIR)/@" > $@
93
94 ../$(PACKAGE_DIR):
95         ln -s $(PWD) $@
96
97 $(PACKAGE_NAME).tar: parsers ../$(PACKAGE_DIR) manifest.txt
98         cd .. ; tar -cf $(PACKAGE_DIR)/$(PACKAGE_NAME).tar -T $(PACKAGE_DIR)/manifest.txt
99
100 $(PACKAGE_NAME).tar.gz: $(PACKAGE_NAME).tar ../$(PACKAGE_DIR)
101         gzip --stdout --best $(PACKAGE_NAME).tar > $(PACKAGE_NAME).tar.gz
102
103 $(PACKAGE_NAME).tar.bz2: $(PACKAGE_NAME).tar
104         bzip2 --stdout --best $(PACKAGE_NAME).tar > $(PACKAGE_NAME).tar.bz2
105
106 $(PACKAGE_NAME).zip: parsers ../$(PACKAGE_DIR) manifest.txt
107         rm -f $(PACKAGE_NAME).zip ; \
108         cd .. ; \
109         zip -q -@ $(PACKAGE_NAME).zip < $(PACKAGE_DIR)/manifest.txt ; \
110         mv $(PACKAGE_NAME).zip $(PACKAGE_DIR)
111
112 md5: $(ARCHIVES)
113         @-md5sum $(PACKAGE_NAME).tar.gz
114         @-md5sum $(PACKAGE_NAME).tar.bz2
115         @-md5sum $(PACKAGE_NAME).zip
116
117 .PHONY: tarballs md5