mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 18:28:25 +00:00
TODO
hostname handling.
update DHCP6 configs from dns
parse domain=<domain>,<IPv6 range>
pretty-print counted string options.
DECLINE messages
lease-script fro DHCPv6
20 lines
567 B
Makefile
20 lines
567 B
Makefile
LOCAL_PATH := external/dnsmasq/src
|
|
|
|
#########################
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := bpf.c cache.c dbus.c dhcp.c dnsmasq.c \
|
|
forward.c helper.c lease.c log.c \
|
|
netlink.c network.c option.c rfc1035.c \
|
|
rfc2131.c tftp.c util.c conntrack.c \
|
|
dhcp6.c rfc3315.c dhcp-common.c
|
|
|
|
LOCAL_MODULE := dnsmasq
|
|
|
|
LOCAL_C_INCLUDES := external/dnsmasq/src
|
|
|
|
LOCAL_CFLAGS := -O2 -g -W -Wall -D__ANDROID__ -DNO_IPV6 -DNO_TFTP -DNO_SCRIPT
|
|
LOCAL_SYSTEM_SHARED_LIBRARIES := libc libcutils
|
|
|
|
include $(BUILD_EXECUTABLE)
|