11 lines
270 B
Makefile
11 lines
270 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libfoo
|
|
LOCAL_SRC_FILES := foo.c
|
|
|
|
# LOCAL_LDFLAGS are always ignored for static libraries.
|
|
# This should generate a warning when ndk-build is run!
|
|
LOCAL_LDFLAGS := -llog
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|