Android.mk 537 B

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