| 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 \ | 
| JP Abgrall | 1235158 | 2014-06-17 17:01:14 -0700 | [diff] [blame] | 20 | $(LOCAL_PATH)/../../extras/ext4_utils \ | 
|  | 21 | $(LOCAL_PATH)/../../extras/f2fs_utils | 
| Dmitry Grinberg | e6f3e9b | 2014-03-11 18:28:15 -0700 | [diff] [blame] | 22 | LOCAL_SRC_FILES := protocol.c engine.c bootimg.c fastboot.c util.c fs.c | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 23 | LOCAL_MODULE := fastboot | 
| Kenny Root | d5d6d97 | 2012-09-26 09:58:07 -0700 | [diff] [blame] | 24 | LOCAL_MODULE_TAGS := debug | 
| Mark Salyzyn | 5957c1f | 2014-04-30 14:05:28 -0700 | [diff] [blame] | 25 | LOCAL_CFLAGS += -std=gnu99 -Werror | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 26 |  | 
|  | 27 | ifeq ($(HOST_OS),linux) | 
|  | 28 | LOCAL_SRC_FILES += usb_linux.c util_linux.c | 
|  | 29 | endif | 
|  | 30 |  | 
|  | 31 | ifeq ($(HOST_OS),darwin) | 
|  | 32 | LOCAL_SRC_FILES += usb_osx.c util_osx.c | 
|  | 33 | LOCAL_LDLIBS += -lpthread -framework CoreFoundation -framework IOKit \ | 
|  | 34 | -framework Carbon | 
| Tim Murray | bd87944 | 2014-07-24 19:27:37 -0700 | [diff] [blame] | 35 | LOCAL_CFLAGS += -Wno-unused-parameter | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 36 | endif | 
|  | 37 |  | 
|  | 38 | ifeq ($(HOST_OS),windows) | 
|  | 39 | LOCAL_SRC_FILES += usb_windows.c util_windows.c | 
|  | 40 | EXTRA_STATIC_LIBS := AdbWinApi | 
| Raphael | fab1678 | 2010-04-13 15:25:50 -0700 | [diff] [blame] | 41 | ifneq ($(strip $(USE_CYGWIN)),) | 
|  | 42 | # Pure cygwin case | 
|  | 43 | LOCAL_LDLIBS += -lpthread | 
| Raphael | fab1678 | 2010-04-13 15:25:50 -0700 | [diff] [blame] | 44 | endif | 
|  | 45 | ifneq ($(strip $(USE_MINGW)),) | 
|  | 46 | # MinGW under Linux case | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 47 | LOCAL_LDLIBS += -lws2_32 | 
|  | 48 | USE_SYSDEPS_WIN32 := 1 | 
|  | 49 | endif | 
| Raphael | fab1678 | 2010-04-13 15:25:50 -0700 | [diff] [blame] | 50 | LOCAL_C_INCLUDES += development/host/windows/usb/api | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 51 | endif | 
|  | 52 |  | 
| Joe Onorato | 2ffe3c8 | 2012-07-18 12:03:33 -0700 | [diff] [blame] | 53 | LOCAL_STATIC_LIBRARIES := \ | 
|  | 54 | $(EXTRA_STATIC_LIBS) \ | 
|  | 55 | libzipfile \ | 
|  | 56 | libunz \ | 
|  | 57 | libext4_utils_host \ | 
| Joe Onorato | 5069b01 | 2012-07-23 19:15:14 -0700 | [diff] [blame] | 58 | libsparse_host \ | 
| Joe Onorato | 2ffe3c8 | 2012-07-18 12:03:33 -0700 | [diff] [blame] | 59 | libz | 
| JP Abgrall | 6bd72be | 2014-06-17 23:43:18 -0700 | [diff] [blame] | 60 |  | 
| Kenny Root | 82fd659 | 2012-04-08 11:25:04 -0700 | [diff] [blame] | 61 | ifneq ($(HOST_OS),windows) | 
| Kenny Root | 82fd659 | 2012-04-08 11:25:04 -0700 | [diff] [blame] | 62 | LOCAL_STATIC_LIBRARIES += libselinux | 
| Kenny Root | 82fd659 | 2012-04-08 11:25:04 -0700 | [diff] [blame] | 63 | endif # HOST_OS != windows | 
|  | 64 |  | 
| Torne (Richard Coles) | 11d8ac2 | 2014-06-18 13:48:38 +0100 | [diff] [blame] | 65 | ifeq ($(HOST_OS),linux) | 
| JP Abgrall | 6bd72be | 2014-06-17 23:43:18 -0700 | [diff] [blame] | 66 | # libf2fs_dlutils_host will dlopen("libf2fs_fmt_host_dyn") | 
|  | 67 | LOCAL_CFLAGS += -DUSE_F2FS | 
| JP Abgrall | 436abeb | 2014-06-19 14:47:19 -0700 | [diff] [blame] | 68 | LOCAL_LDFLAGS += -ldl -rdynamic -Wl,-rpath,. | 
| JP Abgrall | 64c0ff2 | 2014-06-18 11:12:52 -0700 | [diff] [blame] | 69 | LOCAL_REQUIRED_MODULES := libf2fs_fmt_host_dyn | 
| JP Abgrall | 6bd72be | 2014-06-17 23:43:18 -0700 | [diff] [blame] | 70 | # The following libf2fs_* are from system/extras/f2fs_utils, | 
|  | 71 | # and do not use code in external/f2fs-tools. | 
| JP Abgrall | 64c0ff2 | 2014-06-18 11:12:52 -0700 | [diff] [blame] | 72 | LOCAL_STATIC_LIBRARIES += libf2fs_utils_host libf2fs_ioutils_host libf2fs_dlutils_host | 
| JP Abgrall | 6bd72be | 2014-06-17 23:43:18 -0700 | [diff] [blame] | 73 | endif | 
|  | 74 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 75 | include $(BUILD_HOST_EXECUTABLE) | 
| Joe Onorato | 5069b01 | 2012-07-23 19:15:14 -0700 | [diff] [blame] | 76 |  | 
| Ying Wang | 6b048ce | 2014-06-19 14:15:03 -0700 | [diff] [blame] | 77 | my_dist_files := $(LOCAL_BUILT_MODULE) | 
|  | 78 | ifeq ($(HOST_OS),linux) | 
|  | 79 | my_dist_files += $(HOST_LIBRARY_PATH)/libf2fs_fmt_host_dyn$(HOST_SHLIB_SUFFIX) | 
|  | 80 | endif | 
|  | 81 | $(call dist-for-goals,dist_files sdk,$(my_dist_files)) | 
|  | 82 | my_dist_files := | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 83 |  | 
| Joe Onorato | 5069b01 | 2012-07-23 19:15:14 -0700 | [diff] [blame] | 84 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 85 | ifeq ($(HOST_OS),linux) | 
|  | 86 | include $(CLEAR_VARS) | 
| Mark Wachsler | 157b001 | 2013-10-02 09:35:38 -0400 | [diff] [blame] | 87 | LOCAL_SRC_FILES := usbtest.c usb_linux.c util.c | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 88 | LOCAL_MODULE := usbtest | 
| Mark Salyzyn | 5957c1f | 2014-04-30 14:05:28 -0700 | [diff] [blame] | 89 | LOCAL_CFLAGS := -Werror | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 90 | include $(BUILD_HOST_EXECUTABLE) | 
|  | 91 | endif | 
|  | 92 |  | 
|  | 93 | ifeq ($(HOST_OS),windows) | 
|  | 94 | $(LOCAL_INSTALLED_MODULE): $(HOST_OUT_EXECUTABLES)/AdbWinApi.dll | 
|  | 95 | endif |