Home | History | Annotate | Download | only in wingray
      1 LOCAL_PATH := $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 ifeq ($(TARGET_PREBUILT_KERNEL),)
      5 TARGET_PREBUILT_KERNEL := $(LOCAL_PATH)/kernel
      6 endif
      7 
      8 file := $(INSTALLED_KERNEL_TARGET)
      9 ALL_PREBUILT += $(file)
     10 $(file): $(TARGET_PREBUILT_KERNEL) | $(ACP)
     11 	$(transform-prebuilt-to-target)
     12 
     13 include $(CLEAR_VARS)
     14 
     15 COMMON_DIR := vendor/nvidia/common/
     16 
     17 ifeq ($(wildcard $(COMMON_DIR)/TegraBoard.mk),$(COMMON_DIR)/TegraBoard.mk)
     18 include $(COMMON_DIR)/TegraBoard.mk
     19 endif
     20 
     21 subdir_makefiles:= \
     22 	$(LOCAL_PATH)/libaudio/Android.mk \
     23 	$(LOCAL_PATH)/taudio/Android.mk
     24 
     25 include $(subdir_makefiles)
     26 
     27 -include vendor/moto/stingray/AndroidBoardVendor.mk
     28