1# Mesa 3-D graphics library 2# 3# Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com> 4# Copyright (C) 2010-2011 LunarG Inc. 5# 6# Permission is hereby granted, free of charge, to any person obtaining a 7# copy of this software and associated documentation files (the "Software"), 8# to deal in the Software without restriction, including without limitation 9# the rights to use, copy, modify, merge, publish, distribute, sublicense, 10# and/or sell copies of the Software, and to permit persons to whom the 11# Software is furnished to do so, subject to the following conditions: 12# 13# The above copyright notice and this permission notice shall be included 14# in all copies or substantial portions of the Software. 15# 16# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22# DEALINGS IN THE SOFTWARE. 23 24# included by glsl Android.mk for source generation 25 26ifeq ($(LOCAL_MODULE_CLASS),) 27LOCAL_MODULE_CLASS := STATIC_LIBRARIES 28endif 29 30intermediates := $(call local-generated-sources-dir) 31 32LOCAL_SRC_FILES := $(LOCAL_SRC_FILES) 33 34LOCAL_C_INCLUDES += \ 35 $(intermediates)/nir \ 36 $(MESA_TOP)/src/compiler/nir 37 38LOCAL_EXPORT_C_INCLUDE_DIRS += \ 39 $(intermediates)/nir \ 40 $(MESA_TOP)/src/compiler \ 41 $(MESA_TOP)/src/compiler/nir 42 43LOCAL_GENERATED_SOURCES += $(addprefix $(intermediates)/, \ 44 $(NIR_GENERATED_FILES) $(SPIRV_GENERATED_FILES)) 45 46# Modules using libmesa_nir must set LOCAL_GENERATED_SOURCES to this 47MESA_GEN_NIR_H := $(addprefix $(call local-generated-sources-dir)/, \ 48 nir/nir_opcodes.h \ 49 nir/nir_intrinsics.h \ 50 nir/nir_builder_opcodes.h) 51 52nir_builder_opcodes_gen := $(LOCAL_PATH)/nir/nir_builder_opcodes_h.py 53nir_builder_opcodes_deps := \ 54 $(LOCAL_PATH)/nir/nir_opcodes.py \ 55 $(LOCAL_PATH)/nir/nir_builder_opcodes_h.py 56 57$(intermediates)/nir/nir_builder_opcodes.h: $(nir_builder_opcodes_deps) 58 @mkdir -p $(dir $@) 59 $(hide) $(MESA_PYTHON2) $(nir_builder_opcodes_gen) $< > $@ 60 61nir_constant_expressions_gen := $(LOCAL_PATH)/nir/nir_constant_expressions.py 62nir_constant_expressions_deps := \ 63 $(LOCAL_PATH)/nir/nir_opcodes.py \ 64 $(LOCAL_PATH)/nir/nir_constant_expressions.py 65 66$(intermediates)/nir/nir_constant_expressions.c: $(nir_constant_expressions_deps) 67 @mkdir -p $(dir $@) 68 $(hide) $(MESA_PYTHON2) $(nir_constant_expressions_gen) $< > $@ 69 70nir_opcodes_h_gen := $(LOCAL_PATH)/nir/nir_opcodes_h.py 71nir_opcodes_h_deps := \ 72 $(LOCAL_PATH)/nir/nir_opcodes.py \ 73 $(LOCAL_PATH)/nir/nir_opcodes_h.py 74 75$(intermediates)/nir/nir_opcodes.h: $(nir_opcodes_h_deps) 76 @mkdir -p $(dir $@) 77 $(hide) $(MESA_PYTHON2) $(nir_opcodes_h_gen) $< > $@ 78 79$(LOCAL_PATH)/nir/nir.h: $(intermediates)/nir/nir_opcodes.h 80 81nir_opcodes_c_gen := $(LOCAL_PATH)/nir/nir_opcodes_c.py 82nir_opcodes_c_deps := \ 83 $(LOCAL_PATH)/nir/nir_opcodes.py \ 84 $(LOCAL_PATH)/nir/nir_opcodes_c.py 85 86$(intermediates)/nir/nir_opcodes.c: $(nir_opcodes_c_deps) 87 @mkdir -p $(dir $@) 88 $(hide) $(MESA_PYTHON2) $(nir_opcodes_c_gen) $< > $@ 89 90nir_opt_algebraic_gen := $(LOCAL_PATH)/nir/nir_opt_algebraic.py 91nir_opt_algebraic_deps := \ 92 $(LOCAL_PATH)/nir/nir_opt_algebraic.py \ 93 $(LOCAL_PATH)/nir/nir_algebraic.py 94 95$(intermediates)/nir/nir_opt_algebraic.c: $(nir_opt_algebraic_deps) 96 @mkdir -p $(dir $@) 97 $(hide) $(MESA_PYTHON2) $(nir_opt_algebraic_gen) $< > $@ 98 99$(intermediates)/spirv/spirv_info.c: $(LOCAL_PATH)/spirv/spirv_info_c.py $(LOCAL_PATH)/spirv/spirv.core.grammar.json 100 @mkdir -p $(dir $@) 101 $(hide) $(MESA_PYTHON2) $^ $@ || ($(RM) $@; false) 102 103$(intermediates)/spirv/vtn_gather_types.c:: $(LOCAL_PATH)/spirv/vtn_gather_types_c.py $(LOCAL_PATH)/spirv/spirv.core.grammar.json 104 @mkdir -p $(dir $@) 105 $(hide) $(MESA_PYTHON2) $^ $@ || ($(RM) $@; false) 106 107nir_intrinsics_h_gen := $(LOCAL_PATH)/nir/nir_intrinsics_h.py 108$(intermediates)/nir/nir_intrinsics.h: $(LOCAL_PATH)/nir/nir_intrinsics.py $(nir_intrinsics_h_gen) 109 @mkdir -p $(dir $@) 110 $(hide) $(MESA_PYTHON2) $(nir_intrinsics_h_gen) --outdir $(dir $@) || ($(RM) $@; false) 111 112nir_intrinsics_c_gen := $(LOCAL_PATH)/nir/nir_intrinsics_c.py 113$(intermediates)/nir/nir_intrinsics.c: $(LOCAL_PATH)/nir/nir_intrinsics.py $(nir_intrinsics_c_gen) 114 @mkdir -p $(dir $@) 115 $(hide) $(MESA_PYTHON2) $(nir_intrinsics_c_gen) --outdir $(dir $@) || ($(RM) $@; false) 116