Home | History | Annotate | Download | only in rs
      1 
      2 LOCAL_PATH:=$(call my-dir)
      3 
      4 .PHONY: rs-prebuilts-full
      5 rs-prebuilts-full: \
      6     bcc_compat \
      7     llvm-rs-cc \
      8     libRSSupport \
      9     libRSSupportIO \
     10     libRScpp_static \
     11     libblasV8 \
     12     libcompiler_rt \
     13     librsrt_arm.bc \
     14     librsrt_arm64.bc \
     15     librsrt_mips.bc \
     16     librsrt_x86.bc \
     17     librsrt_x86_64.bc \
     18     libLLVM_android-host64 \
     19     libclang_android-host64
     20 
     21 ifneq ($(HOST_OS),darwin)
     22 rs-prebuilts-full: \
     23     host_cross_llvm-rs-cc \
     24     host_cross_bcc_compat
     25 endif
     26 
     27 include $(call all-makefiles-under,$(LOCAL_PATH))
     28 
     29