Advertisement
Guest User

iperf3 Android.mk

a guest
Jan 11th, 2017
1,039
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.95 KB | None | 0 0
  1. LOCAL_PATH := $(call my-dir)
  2.  
  3. include $(CLEAR_VARS)
  4.  
  5. LOCAL_CFLAGS += -fPIE
  6. LOCAL_LDFLAGS += -fPIE -pie
  7.  
  8. LOCAL_MODULE := iperf3
  9. LOCAL_SRC_FILES :=                         cjson.c \
  10.                                            cjson.h \
  11.                                            flowlabel.h \
  12.                                            iperf.h \
  13.                                            iperf_api.c \
  14.                                            iperf_api.h \
  15.                                            iperf_error.c \
  16.                                            iperf_client_api.c \
  17.                                            iperf_locale.c \
  18.                                            iperf_locale.h \
  19.                                            iperf_server_api.c \
  20.                                            iperf_tcp.c \
  21.                                            iperf_tcp.h \
  22.                                            iperf_udp.c \
  23.                                            iperf_udp.h \
  24.                                            iperf_sctp.c \
  25.                                            iperf_sctp.h \
  26.                                            iperf_util.c \
  27.                                            iperf_util.h \
  28.                                            main.c \
  29.                                            net.c \
  30.                                            net.h \
  31.                                            portable_endian.h \
  32.                                            queue.h \
  33.                                            tcp_info.c \
  34.                                            tcp_window_size.c \
  35.                                            tcp_window_size.h \
  36.                                            timer.c \
  37.                                            timer.h \
  38.                                            units.c \
  39.                                            units.h \
  40.                                            version.h
  41.  
  42. include $(BUILD_EXECUTABLE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement