Android.mk revision 848b8605
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 21LOCAL_PATH := $(call my-dir) 22 23define local-l-to-c 24 @mkdir -p $(dir $@) 25 @echo "Mesa Lex: $(PRIVATE_MODULE) <= $<" 26 $(hide) $(LEX) -o$@ $< 27endef 28 29define mesa_local-y-to-c-and-h 30 @mkdir -p $(dir $@) 31 @echo "Mesa Yacc: $(PRIVATE_MODULE) <= $<" 32 $(hide) $(YACC) -o $@ -p "_mesa_program_" $< 33endef 34 35# ---------------------------------------------------------------------- 36# libmesa_program.a 37# ---------------------------------------------------------------------- 38 39# Import the following variables: 40# PROGRAM_FILES 41include $(MESA_TOP)/src/mesa/Makefile.sources 42SRCDIR := 43BUILDDIR := 44 45include $(CLEAR_VARS) 46 47LOCAL_MODULE := libmesa_program 48LOCAL_MODULE_CLASS := STATIC_LIBRARIES 49 50intermediates := $(call local-intermediates-dir) 51 52# TODO(chadv): In Makefile.sources, move these vars to a different list so we can 53# remove this kludge. 54generated_sources_basenames := \ 55 lex.yy.c \ 56 program_parse.tab.c \ 57 program_parse.tab.h 58 59LOCAL_SRC_FILES := \ 60 $(filter-out $(generated_sources_basenames),$(subst program/,,$(PROGRAM_FILES))) 61 62LOCAL_GENERATED_SOURCES := \ 63 $(addprefix $(intermediates)/program/,$(generated_sources_basenames)) 64 65$(intermediates)/program/program_parse.tab.c: $(LOCAL_PATH)/program_parse.y 66 $(mesa_local-y-to-c-and-h) 67 68$(intermediates)/program/program_parse.tab.h: $(intermediates)/program/program_parse.tab.c 69 @ 70 71$(intermediates)/program/lex.yy.c: $(LOCAL_PATH)/program_lexer.l 72 $(local-l-to-c) 73 74LOCAL_C_INCLUDES := \ 75 $(intermediates) \ 76 $(MESA_TOP)/src \ 77 $(MESA_TOP)/src/mapi \ 78 $(MESA_TOP)/src/mesa \ 79 $(MESA_TOP)/src/glsl 80 81include $(MESA_COMMON_MK) 82include $(BUILD_STATIC_LIBRARY) 83