mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
20 lines
291 B
Makefile
20 lines
291 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := zlib
|
|
|
|
# Add your application source files here...
|
|
LOCAL_SRC_FILES := \
|
|
adler32.c \
|
|
crc32.c \
|
|
deflate.c \
|
|
inffast.c \
|
|
inflate.c \
|
|
inftrees.c \
|
|
trees.c \
|
|
zutil.c
|
|
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|