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.
17 lines
313 B
17 lines
313 B
# 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))
|
|
|