It's nothing like the real iftop, and there's no evidence anyone uses it. In particular, it hasn't been touched since it was first checked in, back in 2008. So it's either perfect or unused. Let's find out... Change-Id: I941adbb67f0166b9b3bd796291060bd67eafa867
115 lines
3.5 KiB
Makefile
115 lines
3.5 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
|
|
common_cflags := \
|
|
-Werror -Wno-unused-parameter -Wno-unused-const-variable \
|
|
-I$(LOCAL_PATH)/upstream-netbsd/include/ \
|
|
-include bsd-compatibility.h \
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := \
|
|
upstream-netbsd/bin/dd/args.c \
|
|
upstream-netbsd/bin/dd/conv.c \
|
|
upstream-netbsd/bin/dd/dd.c \
|
|
upstream-netbsd/bin/dd/dd_hostops.c \
|
|
upstream-netbsd/bin/dd/misc.c \
|
|
upstream-netbsd/bin/dd/position.c \
|
|
upstream-netbsd/lib/libc/gen/getbsize.c \
|
|
upstream-netbsd/lib/libc/gen/humanize_number.c \
|
|
upstream-netbsd/lib/libc/stdlib/strsuftoll.c \
|
|
upstream-netbsd/lib/libc/string/swab.c \
|
|
upstream-netbsd/lib/libutil/raise_default_signal.c
|
|
LOCAL_CFLAGS += $(common_cflags) -Dmain=dd_main -DNO_CONV
|
|
LOCAL_MODULE := libtoolbox_dd
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
BSD_TOOLS := \
|
|
dd \
|
|
|
|
OUR_TOOLS := \
|
|
getevent \
|
|
ioctl \
|
|
log \
|
|
nandread \
|
|
newfs_msdos \
|
|
ps \
|
|
sendevent \
|
|
start \
|
|
stop \
|
|
top \
|
|
|
|
ALL_TOOLS = $(BSD_TOOLS) $(OUR_TOOLS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
start_stop.cpp \
|
|
toolbox.c \
|
|
$(patsubst %,%.c,$(OUR_TOOLS)) \
|
|
|
|
LOCAL_CFLAGS += $(common_cflags)
|
|
LOCAL_CONLYFLAGS += -std=gnu99
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
liblog \
|
|
libcutils \
|
|
libselinux \
|
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := $(patsubst %,libtoolbox_%,$(BSD_TOOLS))
|
|
|
|
LOCAL_MODULE := toolbox
|
|
|
|
# Install the symlinks.
|
|
LOCAL_POST_INSTALL_CMD := $(hide) $(foreach t,$(ALL_TOOLS),ln -sf toolbox $(TARGET_OUT)/bin/$(t);)
|
|
|
|
# Including this will define $(intermediates).
|
|
#
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
$(LOCAL_PATH)/toolbox.c: $(intermediates)/tools.h
|
|
|
|
TOOLS_H := $(intermediates)/tools.h
|
|
$(TOOLS_H): PRIVATE_TOOLS := toolbox $(ALL_TOOLS)
|
|
$(TOOLS_H): PRIVATE_CUSTOM_TOOL = echo "/* file generated automatically */" > $@ ; for t in $(PRIVATE_TOOLS) ; do echo "TOOL($$t)" >> $@ ; done
|
|
$(TOOLS_H): $(LOCAL_PATH)/Android.mk
|
|
$(TOOLS_H):
|
|
$(transform-generated-source)
|
|
|
|
$(LOCAL_PATH)/getevent.c: $(intermediates)/input.h-labels.h
|
|
|
|
UAPI_INPUT_EVENT_CODES_H := bionic/libc/kernel/uapi/linux/input-event-codes.h
|
|
INPUT_H_LABELS_H := $(intermediates)/input.h-labels.h
|
|
$(INPUT_H_LABELS_H): PRIVATE_LOCAL_PATH := $(LOCAL_PATH)
|
|
# The PRIVATE_CUSTOM_TOOL line uses = to evaluate the output path late.
|
|
# We copy the input path so it can't be accidentally modified later.
|
|
$(INPUT_H_LABELS_H): PRIVATE_UAPI_INPUT_EVENT_CODES_H := $(UAPI_INPUT_EVENT_CODES_H)
|
|
$(INPUT_H_LABELS_H): PRIVATE_CUSTOM_TOOL = $(PRIVATE_LOCAL_PATH)/generate-input.h-labels.py $(PRIVATE_UAPI_INPUT_EVENT_CODES_H) > $@
|
|
# The dependency line though gets evaluated now, so the PRIVATE_ copy doesn't exist yet,
|
|
# and the original can't yet have been modified, so this is both sufficient and necessary.
|
|
$(INPUT_H_LABELS_H): $(LOCAL_PATH)/Android.mk $(LOCAL_PATH)/generate-input.h-labels.py $(UAPI_INPUT_EVENT_CODES_H)
|
|
$(INPUT_H_LABELS_H):
|
|
$(transform-generated-source)
|
|
|
|
# We only want 'r' on userdebug and eng builds.
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := r.c
|
|
LOCAL_CFLAGS += $(common_cflags)
|
|
LOCAL_MODULE := r
|
|
LOCAL_MODULE_TAGS := debug
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
|
# We build BSD grep separately, so it can provide egrep and fgrep too.
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := \
|
|
upstream-netbsd/usr.bin/grep/fastgrep.c \
|
|
upstream-netbsd/usr.bin/grep/file.c \
|
|
upstream-netbsd/usr.bin/grep/grep.c \
|
|
upstream-netbsd/usr.bin/grep/queue.c \
|
|
upstream-netbsd/usr.bin/grep/util.c
|
|
LOCAL_CFLAGS += $(common_cflags)
|
|
LOCAL_MODULE := grep
|
|
LOCAL_POST_INSTALL_CMD := $(hide) $(foreach t,egrep fgrep,ln -sf grep $(TARGET_OUT)/bin/$(t);)
|
|
include $(BUILD_EXECUTABLE)
|