| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | # Copyright (C) 2007 Google Inc. | 
|  | 2 | # | 
|  | 3 | # Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 4 | # you may not use this file except in compliance with the License. | 
|  | 5 | # You may obtain a copy of the License at | 
|  | 6 | # | 
|  | 7 | #      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 8 | # | 
|  | 9 | # Unless required by applicable law or agreed to in writing, software | 
|  | 10 | # distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 12 | # See the License for the specific language governing permissions and | 
|  | 13 | # limitations under the License. | 
|  | 14 |  | 
|  | 15 | LOCAL_PATH:= $(call my-dir) | 
|  | 16 |  | 
|  | 17 | include $(CLEAR_VARS) | 
|  | 18 |  | 
| Anatol Pomazau | c8ba536 | 2011-12-15 17:50:18 -0800 | [diff] [blame] | 19 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/../mkbootimg \ | 
|  | 20 | $(LOCAL_PATH)/../../extras/ext4_utils | 
|  | 21 | LOCAL_SRC_FILES := protocol.c engine.c bootimg.c fastboot.c | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 22 | LOCAL_MODULE := fastboot | 
| Kenny Root | d5d6d97 | 2012-09-26 09:58:07 -0700 | [diff] [blame] | 23 | LOCAL_MODULE_TAGS := debug | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 24 |  | 
|  | 25 | ifeq ($(HOST_OS),linux) | 
|  | 26 | LOCAL_SRC_FILES += usb_linux.c util_linux.c | 
|  | 27 | endif | 
|  | 28 |  | 
|  | 29 | ifeq ($(HOST_OS),darwin) | 
|  | 30 | LOCAL_SRC_FILES += usb_osx.c util_osx.c | 
|  | 31 | LOCAL_LDLIBS += -lpthread -framework CoreFoundation -framework IOKit \ | 
|  | 32 | -framework Carbon | 
|  | 33 | endif | 
|  | 34 |  | 
|  | 35 | ifeq ($(HOST_OS),windows) | 
|  | 36 | LOCAL_SRC_FILES += usb_windows.c util_windows.c | 
|  | 37 | EXTRA_STATIC_LIBS := AdbWinApi | 
| Raphael | fab1678 | 2010-04-13 15:25:50 -0700 | [diff] [blame] | 38 | ifneq ($(strip $(USE_CYGWIN)),) | 
|  | 39 | # Pure cygwin case | 
|  | 40 | LOCAL_LDLIBS += -lpthread | 
|  | 41 | LOCAL_C_INCLUDES += /usr/include/w32api/ddk | 
|  | 42 | endif | 
|  | 43 | ifneq ($(strip $(USE_MINGW)),) | 
|  | 44 | # MinGW under Linux case | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 45 | LOCAL_LDLIBS += -lws2_32 | 
|  | 46 | USE_SYSDEPS_WIN32 := 1 | 
| Raphael | fab1678 | 2010-04-13 15:25:50 -0700 | [diff] [blame] | 47 | LOCAL_C_INCLUDES += /usr/i586-mingw32msvc/include/ddk | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 48 | endif | 
| Raphael | fab1678 | 2010-04-13 15:25:50 -0700 | [diff] [blame] | 49 | LOCAL_C_INCLUDES += development/host/windows/usb/api | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 50 | endif | 
|  | 51 |  | 
| Joe Onorato | 2ffe3c8 | 2012-07-18 12:03:33 -0700 | [diff] [blame] | 52 | LOCAL_STATIC_LIBRARIES := \ | 
|  | 53 | $(EXTRA_STATIC_LIBS) \ | 
|  | 54 | libzipfile \ | 
|  | 55 | libunz \ | 
|  | 56 | libext4_utils_host \ | 
| Joe Onorato | 5069b01 | 2012-07-23 19:15:14 -0700 | [diff] [blame] | 57 | libsparse_host \ | 
| Joe Onorato | 2ffe3c8 | 2012-07-18 12:03:33 -0700 | [diff] [blame] | 58 | libz | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 59 |  | 
| Kenny Root | 82fd659 | 2012-04-08 11:25:04 -0700 | [diff] [blame] | 60 | ifneq ($(HOST_OS),windows) | 
| Kenny Root | 82fd659 | 2012-04-08 11:25:04 -0700 | [diff] [blame] | 61 | LOCAL_STATIC_LIBRARIES += libselinux | 
| Kenny Root | 82fd659 | 2012-04-08 11:25:04 -0700 | [diff] [blame] | 62 | endif # HOST_OS != windows | 
|  | 63 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 64 | include $(BUILD_HOST_EXECUTABLE) | 
| Joe Onorato | 5069b01 | 2012-07-23 19:15:14 -0700 | [diff] [blame] | 65 |  | 
|  | 66 |  | 
| Ying Wang | 96535ba | 2012-09-05 10:26:43 -0700 | [diff] [blame] | 67 | $(call dist-for-goals,dist_files sdk,$(LOCAL_BUILT_MODULE)) | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 68 |  | 
| Joe Onorato | 5069b01 | 2012-07-23 19:15:14 -0700 | [diff] [blame] | 69 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 70 | ifeq ($(HOST_OS),linux) | 
|  | 71 | include $(CLEAR_VARS) | 
|  | 72 | LOCAL_SRC_FILES := usbtest.c usb_linux.c | 
|  | 73 | LOCAL_MODULE := usbtest | 
|  | 74 | include $(BUILD_HOST_EXECUTABLE) | 
|  | 75 | endif | 
|  | 76 |  | 
|  | 77 | ifeq ($(HOST_OS),windows) | 
|  | 78 | $(LOCAL_INSTALLED_MODULE): $(HOST_OUT_EXECUTABLES)/AdbWinApi.dll | 
|  | 79 | endif |