Android.mk 303 B

12345678910111213141516
  1. LOCAL_PATH := $(call my-dir)
  2. include $(CLEAR_VARS)
  3. LOCAL_MODULE := libenet
  4. LOCAL_SRC_FILES := ..\enet.c
  5. ifdef ENET_LZ4
  6. LOCAL_CFLAGS += -DENET_LZ4
  7. LOCAL_SRC_FILES += ..\lz4\lz4.c
  8. endif
  9. ifdef ENET_STATIC
  10. include $(BUILD_STATIC_LIBRARY)
  11. else
  12. include $(BUILD_SHARED_LIBRARY)
  13. endif