aboutsummaryrefslogtreecommitdiff
path: root/avahi-utils/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'avahi-utils/Android.mk')
-rw-r--r--avahi-utils/Android.mk53
1 files changed, 53 insertions, 0 deletions
diff --git a/avahi-utils/Android.mk b/avahi-utils/Android.mk
new file mode 100644
index 0000000..e85a943
--- /dev/null
+++ b/avahi-utils/Android.mk
@@ -0,0 +1,53 @@
+LOCAL_PATH:=$(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE:=avahi-browse
+
+LOCAL_MODULE_TAGS:=eng debug
+
+LOCAL_SRC_FILES := \
+ avahi-browse.c \
+ sigint.c
+
+LOCAL_SHARED_LIBRARIES:=\
+ libavahi-client \
+ libavahi-common \
+ libdbus
+
+LOCAL_CFLAGS := \
+ -DHAVE_CONFIG_H \
+ -g \
+ -O2 \
+ -fstack-protector \
+ -std=c99 \
+ -Wall \
+ -W \
+ -Wextra \
+ -pedantic \
+ -pipe \
+ -Wformat \
+ -Wold-style-definition \
+ -Wdeclaration-after-statement \
+ -Wfloat-equal \
+ -Wmissing-declarations \
+ -Wmissing-prototypes \
+ -Wstrict-prototypes \
+ -Wredundant-decls \
+ -Wmissing-noreturn \
+ -Wshadow \
+ -Wendif-labels \
+ -Wpointer-arith \
+ -Wbad-function-cast \
+ -Wcast-qual \
+ -Wcast-align \
+ -Wwrite-strings \
+ -fdiagnostics-show-option \
+ -Wno-cast-qual \
+ -fno-strict-aliasing \
+ -DDEBUG_TRAP=__asm__\(\"int\ $3\"\)
+
+LOCAL_C_INCLUDES := \
+ $(LOCAL_PATH) \
+ external/avahi
+
+include $(BUILD_EXECUTABLE)