Despite it is not used for network management, it is very convenient tool for wifi bringup and debugging. Test: Manual Change-Id: I045301acc2dd15d0e68d6b99c8e214865f19ebad Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
33 lines
441 B
Text
33 lines
441 B
Text
cc_library_shared {
|
|
name: "libnetutils",
|
|
|
|
srcs: [
|
|
"dhcpclient.c",
|
|
"dhcpmsg.c",
|
|
"ifc_utils.c",
|
|
"packet.c",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libcutils",
|
|
"liblog",
|
|
],
|
|
|
|
cflags: ["-Werror"],
|
|
|
|
export_include_dirs: ["include"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "dhcptool",
|
|
|
|
srcs: [
|
|
"dhcptool.c",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libnetutils",
|
|
],
|
|
|
|
cflags: ["-Werror"],
|
|
}
|