mirror of
https://github.com/linux-msm/qrtr.git
synced 2025-12-24 05:56:29 +01:00
The qrtr-ns has been superceded by the in-kernel nameserver since multiple years. If anybody wants to do archeology, they can find qrtr-ns with old releases / in the git history. Drop it and remove quite some code. Signed-off-by: Luca Weiss <luca.weiss@fairphone.com>
36 lines
635 B
Plaintext
36 lines
635 B
Plaintext
cc_library {
|
|
name: "libqrtr",
|
|
vendor: true,
|
|
srcs: [
|
|
"lib/logging.c",
|
|
"lib/qrtr.c",
|
|
"lib/qmi.c",
|
|
],
|
|
cflags: ["-fPIC", "-Wno-error"],
|
|
export_include_dirs: ["lib"],
|
|
local_include_dirs: ["src"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "qrtr-cfg",
|
|
vendor: true,
|
|
srcs: [
|
|
"lib/logging.c",
|
|
"src/addr.c",
|
|
"src/cfg.c",
|
|
],
|
|
cflags: ["-Wno-error"],
|
|
local_include_dirs: ["lib"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "qrtr-lookup",
|
|
vendor: true,
|
|
srcs: [
|
|
"lib/logging.c",
|
|
"src/lookup.c",
|
|
],
|
|
cflags: ["-Wno-error"],
|
|
local_include_dirs: ["lib"],
|
|
}
|