mesa: Build with subdir-objects.
[mesa.git] / src / mesa / program / Android.mk
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 shall be included
11 # in all copies or substantial portions of the Software.
12 #
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
16 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19 # DEALINGS IN THE SOFTWARE.
20
21 LOCAL_PATH := $(call my-dir)
22
23 define local-l-to-c
24 @mkdir -p $(dir $@)
25 @echo "Mesa Lex: $(PRIVATE_MODULE) <= $<"
26 $(hide) $(LEX) -o$@ $<
27 endef
28
29 define mesa_local-y-to-c-and-h
30 @mkdir -p $(dir $@)
31 @echo "Mesa Yacc: $(PRIVATE_MODULE) <= $<"
32 $(hide) $(YACC) -o $@ -p "_mesa_program_" $<
33 endef
34
35 # ----------------------------------------------------------------------
36 # libmesa_program.a
37 # ----------------------------------------------------------------------
38
39 # Import the following variables:
40 # PROGRAM_FILES
41 include $(MESA_TOP)/src/mesa/Makefile.sources
42
43 include $(CLEAR_VARS)
44
45 LOCAL_MODULE := libmesa_program
46 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
47
48 intermediates := $(call local-intermediates-dir)
49
50 # TODO(chadv): In Makefile.sources, move these vars to a different list so we can
51 # remove this kludge.
52 generated_sources_basenames := \
53 lex.yy.c \
54 program_parse.tab.c \
55 program_parse.tab.h
56
57 LOCAL_SRC_FILES := \
58 $(filter-out $(generated_sources_basenames),$(subst program/,,$(PROGRAM_FILES)))
59
60 LOCAL_GENERATED_SOURCES := \
61 $(addprefix $(intermediates)/program/,$(generated_sources_basenames))
62
63 $(intermediates)/program/program_parse.tab.c: $(LOCAL_PATH)/program_parse.y
64 $(mesa_local-y-to-c-and-h)
65
66 $(intermediates)/program/program_parse.tab.h: $(intermediates)/program/program_parse.tab.c
67 @
68
69 $(intermediates)/program/lex.yy.c: $(LOCAL_PATH)/program_lexer.l
70 $(local-l-to-c)
71
72 LOCAL_C_INCLUDES := \
73 $(intermediates) \
74 $(MESA_TOP)/src \
75 $(MESA_TOP)/src/mapi \
76 $(MESA_TOP)/src/mesa \
77 $(MESA_TOP)/src/glsl
78
79 include $(MESA_COMMON_MK)
80 include $(BUILD_STATIC_LIBRARY)