diff options
| author | Mike Lockwood <lockwood@android.com> | 2010-05-09 16:23:47 -0400 |
|---|---|---|
| committer | Mike Lockwood <lockwood@android.com> | 2010-05-10 11:37:26 -0400 |
| commit | 30ff2c70ce05d761e8cb0ab7ee02b39a681fe0cb (patch) | |
| tree | c61080d594625308b3db95223b55c6eac326aa05 /libusbhost/Android.mk | |
| parent | aebae19598acba8cedbcecd1acfe83de2f0a4be6 (diff) | |
| download | system_core-30ff2c70ce05d761e8cb0ab7ee02b39a681fe0cb.tar.gz system_core-30ff2c70ce05d761e8cb0ab7ee02b39a681fe0cb.tar.bz2 system_core-30ff2c70ce05d761e8cb0ab7ee02b39a681fe0cb.zip | |
libusbhost: new library for Linux USB host support.
Supports access to Linux usbdevfs on both device and Linux host.
Change-Id: Ie88a5193be3ee715792b10b34b3da32ffc4ca57b
Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'libusbhost/Android.mk')
| -rw-r--r-- | libusbhost/Android.mk | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/libusbhost/Android.mk b/libusbhost/Android.mk new file mode 100644 index 00000000..c8c8758d --- /dev/null +++ b/libusbhost/Android.mk @@ -0,0 +1,41 @@ +# +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +LOCAL_PATH := $(my-dir) + +# Static library for Linux host +# ======================================================== + +ifeq ($(HOST_OS),linux) + +include $(CLEAR_VARS) + +LOCAL_MODULE := libusbhost +LOCAL_SRC_FILES := usbhost.c + +include $(BUILD_HOST_STATIC_LIBRARY) + +endif + +# Static library for target +# ======================================================== + +include $(CLEAR_VARS) + +LOCAL_MODULE := libusbhost +LOCAL_SRC_FILES := usbhost.c + +include $(BUILD_STATIC_LIBRARY) |
