aboutsummaryrefslogtreecommitdiffstats
path: root/Android.mk
blob: 8b411622e5aaa180e4ccf64988335d42a9127d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
LOCAL_PATH:= $(call my-dir)

#########
# usbip #
#########
include $(CLEAR_VARS)

LOCAL_SRC_FILES := \
	src/usbip.c \
	src/usbip_network.c 

LOCAL_C_INCLUDES := $(LOCAL_PATH)/libsrc

LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := usbip
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)

include $(BUILD_EXECUTABLE)

##########
# usbipd #
##########
include $(CLEAR_VARS)

LOCAL_SRC_FILES := \
	src/usbipd.c \
	src/usbip_network.c

LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := usbipd
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)

include $(BUILD_EXECUTABLE)

#####################
# usbip_bind_driver # 
#####################
include $(CLEAR_VARS)

LOCAL_SRC_FILES := \
	src/bind-driver.c \
	src/utils.c \
	src/usbip_network.c

LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := usbip_bind_driver
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)

include $(BUILD_EXECUTABLE)