11 lines
235 B
Makefile
11 lines
235 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libfoo
|
|
LOCAL_SRC_FILES := foo.c
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libbar
|
|
LOCAL_SRC_FILES := bar.c
|
|
include $(BUILD_STATIC_LIBRARY)
|