_mesa_create_exec_table(): deprecate ProgramStringARB.
[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/glsl/tests check
34 $(MAKE) -C src/glx/tests check
35
36 clean-local:
37 -@touch $(top_builddir)/configs/current
38 -@for dir in $(SUBDIRS) ; do \
39 if [ -d $$dir ] ; then \
40 (cd $$dir && $(MAKE) clean) ; \
41 fi \
42 done
43 -@test -s $(top_builddir)/configs/current || rm -f $(top_builddir)/configs/current
44
45
46
47 distclean-local:
48 -rm -rf lib*
49 -rm -f $(top_builddir)/configs/current
50 -find . '(' -name '*.o' -o -name '*.a' -o -name '*.so' -o \
51 -name depend -o -name depend.bak ')' -exec rm -f '{}' ';'
52
53 .PHONY: doxygen
54
55 # Rules for making release tarballs
56
57 PACKAGE_VERSION=9.1-devel
58 PACKAGE_DIR = Mesa-$(PACKAGE_VERSION)
59 PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION)
60
61 EXTRA_FILES = \
62 aclocal.m4 \
63 configure \
64 src/glsl/glsl_parser.cc \
65 src/glsl/glsl_parser.h \
66 src/glsl/glsl_lexer.cc \
67 src/glsl/glcpp/glcpp-lex.c \
68 src/glsl/glcpp/glcpp-parse.c \
69 src/glsl/glcpp/glcpp-parse.h \
70 src/mesa/main/api_exec_es1.c \
71 src/mesa/main/api_exec_es1_dispatch.h \
72 src/mesa/main/api_exec_es1_remap_helper.h \
73 src/mesa/main/api_exec_es2.c \
74 src/mesa/main/api_exec_es2_dispatch.h \
75 src/mesa/main/api_exec_es2_remap_helper.h \
76 src/mesa/program/lex.yy.c \
77 src/mesa/program/program_parse.tab.c \
78 src/mesa/program/program_parse.tab.h
79
80 IGNORE_FILES = \
81 -x autogen.sh
82
83
84 parsers: configure
85 -@touch $(top_builddir)/configs/current
86 $(MAKE) -C src/glsl glsl_parser.cc glsl_parser.h glsl_lexer.cc
87 $(MAKE) -C src/glsl/glcpp glcpp-lex.c glcpp-parse.c glcpp-parse.h
88 $(MAKE) -C src/mesa program/lex.yy.c program/program_parse.tab.c program/program_parse.tab.h
89
90 # Everything for new a Mesa release:
91 ARCHIVES = $(PACKAGE_NAME).tar.gz \
92 $(PACKAGE_NAME).tar.bz2 \
93 $(PACKAGE_NAME).zip
94
95 tarballs: md5
96 rm -f ../$(PACKAGE_DIR) $(PACKAGE_NAME).tar
97
98 manifest.txt: .git
99 ( \
100 ls -1 $(EXTRA_FILES) ; \
101 git ls-files $(IGNORE_FILES) \
102 ) | sed -e '/^\(.*\/\)\?\./d' -e "s@^@$(PACKAGE_DIR)/@" > $@
103
104 ../$(PACKAGE_DIR):
105 ln -s $(PWD) $@
106
107 $(PACKAGE_NAME).tar: parsers ../$(PACKAGE_DIR) manifest.txt
108 cd .. ; tar -cf $(PACKAGE_DIR)/$(PACKAGE_NAME).tar -T $(PACKAGE_DIR)/manifest.txt
109
110 $(PACKAGE_NAME).tar.gz: $(PACKAGE_NAME).tar ../$(PACKAGE_DIR)
111 gzip --stdout --best $(PACKAGE_NAME).tar > $(PACKAGE_NAME).tar.gz
112
113 $(PACKAGE_NAME).tar.bz2: $(PACKAGE_NAME).tar
114 bzip2 --stdout --best $(PACKAGE_NAME).tar > $(PACKAGE_NAME).tar.bz2
115
116 $(PACKAGE_NAME).zip: parsers ../$(PACKAGE_DIR) manifest.txt
117 rm -f $(PACKAGE_NAME).zip ; \
118 cd .. ; \
119 zip -q -@ $(PACKAGE_NAME).zip < $(PACKAGE_DIR)/manifest.txt ; \
120 mv $(PACKAGE_NAME).zip $(PACKAGE_DIR)
121
122 md5: $(ARCHIVES)
123 @-md5sum $(PACKAGE_NAME).tar.gz
124 @-md5sum $(PACKAGE_NAME).tar.bz2
125 @-md5sum $(PACKAGE_NAME).zip
126
127 .PHONY: tarballs md5