diff options
Diffstat (limited to 'libusbhost/Android.mk')
-rw-r--r-- | libusbhost/Android.mk | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libusbhost/Android.mk b/libusbhost/Android.mk index 52b4ead..9565cc5 100644 --- a/libusbhost/Android.mk +++ b/libusbhost/Android.mk @@ -44,3 +44,13 @@ LOCAL_CFLAGS := -g -DUSE_LIBLOG LOCAL_SHARED_LIBRARIES := libcutils include $(BUILD_SHARED_LIBRARY) + +# Static library for target +# ======================================================== + +include $(CLEAR_VARS) + +LOCAL_MODULE := libusbhost +LOCAL_SRC_FILES := usbhost.c + +include $(BUILD_STATIC_LIBRARY) |