aboutsummaryrefslogtreecommitdiff
path: root/Android.mk
blob: 09fade4741ef75139d2628a118b3030912e7dc12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
LOCAL_PATH := $(call my-dir)

# This module target includes just the single core file: NanoHTTPD.java, which
# is enough for HTTP 1.1 support and nothing else.

include $(CLEAR_VARS)

LOCAL_SRC_FILES := $(call all-java-files-under, core/src/main)
LOCAL_MODULE := libnanohttpd
LOCAL_MODULE_TAGS := optional
LOCAL_SDK_VERSION := current

include $(BUILD_STATIC_JAVA_LIBRARY)