You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
492 B
15 lines
492 B
# Copyright 2015 The Android Open Source Project |
|
|
|
LOCAL_PATH := $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
LOCAL_SRC_FILES := slideshow.cpp |
|
LOCAL_MODULE := slideshow |
|
LOCAL_MODULE_TAGS := optional |
|
LOCAL_FORCE_STATIC_EXECUTABLE := true |
|
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT_SBIN) |
|
LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_SBIN_UNSTRIPPED) |
|
|
|
LOCAL_CFLAGS := -D__STDC_LIMIT_MACROS -Werror |
|
LOCAL_STATIC_LIBRARIES := libminui libpng libz libutils libcutils liblog libm libc |
|
include $(BUILD_EXECUTABLE)
|
|
|