2009-03-04 03:32:55 +00:00
|
|
|
# Copyright 2005 The Android Open Source Project
|
|
|
|
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
mkbootfs.c
|
|
|
|
|
|
|
|
LOCAL_MODULE := mkbootfs
|
|
|
|
|
2014-05-15 22:05:25 +00:00
|
|
|
LOCAL_CFLAGS := -Werror
|
|
|
|
|
2015-04-07 16:38:44 +00:00
|
|
|
LOCAL_SHARED_LIBRARIES := libcutils
|
2015-04-01 16:12:54 +00:00
|
|
|
|
2009-03-04 03:32:55 +00:00
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|
|
|
2010-12-09 18:33:27 +00:00
|
|
|
$(call dist-for-goals,dist_files,$(LOCAL_BUILT_MODULE))
|