Home | History | Annotate | Download | only in compiler
      1 # Mesa 3-D graphics library
      2 #
      3 # Copyright (C) 2010-2011 Chia-I Wu <olvaffe (a] 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 
     26 ifeq ($(LOCAL_MODULE_CLASS),)
     27 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
     28 endif
     29 
     30 intermediates := $(call local-generated-sources-dir)
     31 prebuilt_intermediates := $(MESA_TOP)/prebuilt-intermediates
     32 
     33 LOCAL_SRC_FILES := $(LOCAL_SRC_FILES)
     34 
     35 LOCAL_C_INCLUDES += \
     36 	$(intermediates)/nir \
     37 	$(MESA_TOP)/src/compiler/nir
     38 
     39 LOCAL_EXPORT_C_INCLUDE_DIRS += \
     40 	$(intermediates)/nir \
     41 	$(MESA_TOP)/src/compiler/nir
     42 
     43 LOCAL_GENERATED_SOURCES += $(addprefix $(intermediates)/, \
     44 	$(NIR_GENERATED_FILES))
     45 
     46 # Modules using libmesa_nir must set LOCAL_GENERATED_SOURCES to this
     47 MESA_GEN_NIR_H := $(addprefix $(call local-generated-sources-dir)/, \
     48 	nir/nir_opcodes.h \
     49 	nir/nir_builder_opcodes.h)
     50 
     51 nir_builder_opcodes_gen := $(LOCAL_PATH)/nir/nir_builder_opcodes_h.py
     52 nir_builder_opcodes_deps := \
     53 	$(LOCAL_PATH)/nir/nir_opcodes.py \
     54 	$(LOCAL_PATH)/nir/nir_builder_opcodes_h.py
     55 
     56 $(intermediates)/nir/nir_builder_opcodes.h: $(prebuilt_intermediates)/nir/nir_builder_opcodes.h
     57 	cp -a $< $@
     58 
     59 nir_constant_expressions_gen := $(LOCAL_PATH)/nir/nir_constant_expressions.py
     60 nir_constant_expressions_deps := \
     61 	$(LOCAL_PATH)/nir/nir_opcodes.py \
     62 	$(LOCAL_PATH)/nir/nir_constant_expressions.py
     63 
     64 $(intermediates)/nir/nir_constant_expressions.c: $(prebuilt_intermediates)/nir/nir_constant_expressions.c
     65 	cp -a $< $@
     66 
     67 nir_opcodes_h_gen := $(LOCAL_PATH)/nir/nir_opcodes_h.py
     68 nir_opcodes_h_deps := \
     69 	$(LOCAL_PATH)/nir/nir_opcodes.py \
     70 	$(LOCAL_PATH)/nir/nir_opcodes_h.py
     71 
     72 $(intermediates)/nir/nir_opcodes.h: $(prebuilt_intermediates)/nir/nir_opcodes.h
     73 	cp -a $< $@
     74 
     75 $(LOCAL_PATH)/nir/nir.h: $(intermediates)/nir/nir_opcodes.h
     76 
     77 nir_opcodes_c_gen := $(LOCAL_PATH)/nir/nir_opcodes_c.py
     78 nir_opcodes_c_deps := \
     79 	$(LOCAL_PATH)/nir/nir_opcodes.py \
     80 	$(LOCAL_PATH)/nir/nir_opcodes_c.py
     81 
     82 $(intermediates)/nir/nir_opcodes.c: $(prebuilt_intermediates)/nir/nir_opcodes.c
     83 	cp -a $< $@
     84 
     85 nir_opt_algebraic_gen := $(LOCAL_PATH)/nir/nir_opt_algebraic.py
     86 nir_opt_algebraic_deps := \
     87 	$(LOCAL_PATH)/nir/nir_opt_algebraic.py \
     88 	$(LOCAL_PATH)/nir/nir_algebraic.py
     89 
     90 $(intermediates)/nir/nir_opt_algebraic.c: $(prebuilt_intermediates)/nir/nir_opt_algebraic.c
     91 	cp -a $< $@
     92