| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) | 
| Elliott Hughes | 5054c0d | 2014-07-22 10:46:15 -0700 | [diff] [blame] | 2 |  | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 3 |  | 
| Elliott Hughes | 5054c0d | 2014-07-22 10:46:15 -0700 | [diff] [blame] | 4 | common_cflags := \ | 
| Andreas Gampe | 3294ad1 | 2015-07-30 11:46:30 -0700 | [diff] [blame] | 5 |     -Werror -Wno-unused-parameter -Wno-unused-const-variable \ | 
| Elliott Hughes | 5054c0d | 2014-07-22 10:46:15 -0700 | [diff] [blame] | 6 |     -include bsd-compatibility.h \ | 
 | 7 |  | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 8 |  | 
 | 9 | include $(CLEAR_VARS) | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 10 | LOCAL_SRC_FILES := \ | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 11 |     upstream-netbsd/bin/dd/args.c \ | 
 | 12 |     upstream-netbsd/bin/dd/conv.c \ | 
 | 13 |     upstream-netbsd/bin/dd/dd.c \ | 
 | 14 |     upstream-netbsd/bin/dd/dd_hostops.c \ | 
 | 15 |     upstream-netbsd/bin/dd/misc.c \ | 
| Elliott Hughes | d20218e | 2015-02-04 18:50:14 -0800 | [diff] [blame] | 16 |     upstream-netbsd/bin/dd/position.c \ | 
 | 17 |     upstream-netbsd/lib/libc/gen/getbsize.c \ | 
 | 18 |     upstream-netbsd/lib/libc/gen/humanize_number.c \ | 
 | 19 |     upstream-netbsd/lib/libc/stdlib/strsuftoll.c \ | 
 | 20 |     upstream-netbsd/lib/libc/string/swab.c \ | 
 | 21 |     upstream-netbsd/lib/libutil/raise_default_signal.c | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 22 | LOCAL_CFLAGS += $(common_cflags) -Dmain=dd_main -DNO_CONV | 
| Dan Willemsen | ee2da03 | 2016-05-25 13:19:49 -0700 | [diff] [blame] | 23 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/upstream-netbsd/include/ | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 24 | LOCAL_MODULE := libtoolbox_dd | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 25 | include $(BUILD_STATIC_LIBRARY) | 
 | 26 |  | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 27 |  | 
 | 28 | include $(CLEAR_VARS) | 
 | 29 |  | 
 | 30 | BSD_TOOLS := \ | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 31 |     dd \ | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 32 |  | 
 | 33 | OUR_TOOLS := \ | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 34 |     getevent \ | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 35 |     newfs_msdos \ | 
| Stephen Smalley | 8290d10 | 2012-01-13 08:53:56 -0500 | [diff] [blame] | 36 |  | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 37 | ALL_TOOLS = $(BSD_TOOLS) $(OUR_TOOLS) | 
| Jeff Sharkey | 57df14c | 2012-07-13 16:25:33 -0700 | [diff] [blame] | 38 |  | 
 | 39 | LOCAL_SRC_FILES := \ | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 40 |     toolbox.c \ | 
| Elliott Hughes | d20218e | 2015-02-04 18:50:14 -0800 | [diff] [blame] | 41 |     $(patsubst %,%.c,$(OUR_TOOLS)) \ | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 42 |  | 
| Elliott Hughes | 5054c0d | 2014-07-22 10:46:15 -0700 | [diff] [blame] | 43 | LOCAL_CFLAGS += $(common_cflags) | 
| Dan Willemsen | ee2da03 | 2016-05-25 13:19:49 -0700 | [diff] [blame] | 44 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/upstream-netbsd/include/ | 
| Elliott Hughes | ccecf14 | 2014-01-16 10:53:11 -0800 | [diff] [blame] | 45 |  | 
| Kenny Root | b83c098 | 2012-10-10 11:26:33 -0700 | [diff] [blame] | 46 | LOCAL_SHARED_LIBRARIES := \ | 
| Elliott Hughes | 7fc4712 | 2014-06-07 21:53:04 -0700 | [diff] [blame] | 47 |     libcutils \ | 
| Elliott Hughes | 7fc4712 | 2014-06-07 21:53:04 -0700 | [diff] [blame] | 48 |  | 
| Elliott Hughes | fd4c6b0 | 2014-07-22 17:20:15 -0700 | [diff] [blame] | 49 | LOCAL_WHOLE_STATIC_LIBRARIES := $(patsubst %,libtoolbox_%,$(BSD_TOOLS)) | 
| Elliott Hughes | 5054c0d | 2014-07-22 10:46:15 -0700 | [diff] [blame] | 50 |  | 
| Jeff Sharkey | 57df14c | 2012-07-13 16:25:33 -0700 | [diff] [blame] | 51 | LOCAL_MODULE := toolbox | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 52 |  | 
| Ying Wang | 7d45be0 | 2014-11-24 12:40:32 -0800 | [diff] [blame] | 53 | # Install the symlinks. | 
 | 54 | LOCAL_POST_INSTALL_CMD := $(hide) $(foreach t,$(ALL_TOOLS),ln -sf toolbox $(TARGET_OUT)/bin/$(t);) | 
 | 55 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 56 | # Including this will define $(intermediates). | 
 | 57 | # | 
 | 58 | include $(BUILD_EXECUTABLE) | 
 | 59 |  | 
 | 60 | $(LOCAL_PATH)/toolbox.c: $(intermediates)/tools.h | 
 | 61 |  | 
 | 62 | TOOLS_H := $(intermediates)/tools.h | 
| Elliott Hughes | ad2c07e | 2016-04-11 13:25:25 -0700 | [diff] [blame] | 63 | $(TOOLS_H): PRIVATE_TOOLS := toolbox $(ALL_TOOLS) | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 64 | $(TOOLS_H): PRIVATE_CUSTOM_TOOL = echo "/* file generated automatically */" > $@ ; for t in $(PRIVATE_TOOLS) ; do echo "TOOL($$t)" >> $@ ; done | 
 | 65 | $(TOOLS_H): $(LOCAL_PATH)/Android.mk | 
 | 66 | $(TOOLS_H): | 
 | 67 | 	$(transform-generated-source) | 
 | 68 |  | 
| Elliott Hughes | c7f3c5c | 2015-03-25 16:40:13 -0700 | [diff] [blame] | 69 | $(LOCAL_PATH)/getevent.c: $(intermediates)/input.h-labels.h | 
 | 70 |  | 
| Elliott Hughes | b22b998 | 2016-06-29 14:12:29 -0700 | [diff] [blame] | 71 | UAPI_INPUT_EVENT_CODES_H := bionic/libc/kernel/uapi/linux/input.h bionic/libc/kernel/uapi/linux/input-event-codes.h | 
| Elliott Hughes | c7f3c5c | 2015-03-25 16:40:13 -0700 | [diff] [blame] | 72 | INPUT_H_LABELS_H := $(intermediates)/input.h-labels.h | 
 | 73 | $(INPUT_H_LABELS_H): PRIVATE_LOCAL_PATH := $(LOCAL_PATH) | 
| Elliott Hughes | bd02a47 | 2016-02-08 14:09:10 -0800 | [diff] [blame] | 74 | # The PRIVATE_CUSTOM_TOOL line uses = to evaluate the output path late. | 
 | 75 | # We copy the input path so it can't be accidentally modified later. | 
 | 76 | $(INPUT_H_LABELS_H): PRIVATE_UAPI_INPUT_EVENT_CODES_H := $(UAPI_INPUT_EVENT_CODES_H) | 
 | 77 | $(INPUT_H_LABELS_H): PRIVATE_CUSTOM_TOOL = $(PRIVATE_LOCAL_PATH)/generate-input.h-labels.py $(PRIVATE_UAPI_INPUT_EVENT_CODES_H) > $@ | 
 | 78 | # The dependency line though gets evaluated now, so the PRIVATE_ copy doesn't exist yet, | 
 | 79 | # and the original can't yet have been modified, so this is both sufficient and necessary. | 
 | 80 | $(INPUT_H_LABELS_H): $(LOCAL_PATH)/Android.mk $(LOCAL_PATH)/generate-input.h-labels.py $(UAPI_INPUT_EVENT_CODES_H) | 
| Elliott Hughes | c7f3c5c | 2015-03-25 16:40:13 -0700 | [diff] [blame] | 81 | $(INPUT_H_LABELS_H): | 
 | 82 | 	$(transform-generated-source) | 
| Elliott Hughes | 660e750 | 2014-08-28 20:44:20 -0700 | [diff] [blame] | 83 |  | 
| Elliott Hughes | d20218e | 2015-02-04 18:50:14 -0800 | [diff] [blame] | 84 |  | 
 | 85 | # We build BSD grep separately, so it can provide egrep and fgrep too. | 
 | 86 | include $(CLEAR_VARS) | 
 | 87 | LOCAL_SRC_FILES := \ | 
 | 88 |     upstream-netbsd/usr.bin/grep/fastgrep.c \ | 
 | 89 |     upstream-netbsd/usr.bin/grep/file.c \ | 
 | 90 |     upstream-netbsd/usr.bin/grep/grep.c \ | 
 | 91 |     upstream-netbsd/usr.bin/grep/queue.c \ | 
 | 92 |     upstream-netbsd/usr.bin/grep/util.c | 
 | 93 | LOCAL_CFLAGS += $(common_cflags) | 
| Dan Willemsen | ee2da03 | 2016-05-25 13:19:49 -0700 | [diff] [blame] | 94 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/upstream-netbsd/include/ | 
| Elliott Hughes | d20218e | 2015-02-04 18:50:14 -0800 | [diff] [blame] | 95 | LOCAL_MODULE := grep | 
 | 96 | LOCAL_POST_INSTALL_CMD := $(hide) $(foreach t,egrep fgrep,ln -sf grep $(TARGET_OUT)/bin/$(t);) | 
 | 97 | include $(BUILD_EXECUTABLE) | 
| Elliott Hughes | 455567f | 2017-04-10 10:56:40 -0700 | [diff] [blame] | 98 |  | 
 | 99 |  | 
 | 100 | # We build gzip separately, so it can provide gunzip and zcat too. | 
 | 101 | include $(CLEAR_VARS) | 
 | 102 | LOCAL_MODULE := gzip | 
 | 103 | LOCAL_SRC_FILES := gzip.c | 
 | 104 | LOCAL_CFLAGS += -Wall -Werror | 
 | 105 | LOCAL_SHARED_LIBRARIES += libz | 
 | 106 | LOCAL_POST_INSTALL_CMD := $(hide) $(foreach t,gunzip zcat,ln -sf gzip $(TARGET_OUT)/bin/$(t);) | 
 | 107 | include $(BUILD_EXECUTABLE) |