bc7828eb42
- move to libcutils.so as shared now that they are in DISTTOOL. - liblog dependency is part of libcutils, and need not be called out explicitly now. liblog is in DISTTOOL. - libcutils fs_config has the right to add Android logging Bug: 19908228 Change-Id: I915503f64389b59075620578601f98fc0756bd7a
17 lines
313 B
Makefile
17 lines
313 B
Makefile
# Copyright 2005 The Android Open Source Project
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
mkbootfs.c
|
|
|
|
LOCAL_MODULE := mkbootfs
|
|
|
|
LOCAL_CFLAGS := -Werror
|
|
|
|
LOCAL_SHARED_LIBRARIES := libcutils
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|
|
$(call dist-for-goals,dist_files,$(LOCAL_BUILT_MODULE))
|