blob: 36f2e17d67c0c97bcfae4fb59bb434b180e7f077 [file] [log] [blame]
Ken Sumrall2633ce52012-05-30 16:44:40 -07001# Copyright 2012 The Android Open Source Project
2
3LOCAL_PATH:= $(call my-dir)
4include $(CLEAR_VARS)
5
6LOCAL_SRC_FILES:= corrupt_gdt_free_blocks.c
7
8LOCAL_MODULE:= corrupt_gdt_free_blocks
9LOCAL_MODULE_TAGS := debug
10LOCAL_C_INCLUDES += system/extras/ext4_utils
11
12include $(BUILD_EXECUTABLE)
13
14
15include $(CLEAR_VARS)
16
17LOCAL_SRC_FILES:= set_ext4_err_bit.c
18
19LOCAL_MODULE:= set_ext4_err_bit
20LOCAL_MODULE_TAGS := debug
21
22include $(BUILD_EXECUTABLE)
23
24
25include $(CLEAR_VARS)
26
27LOCAL_SRC_FILES:= rand_emmc_perf.c
28
29LOCAL_MODULE:= rand_emmc_perf
30LOCAL_MODULE_TAGS := optional
31LOCAL_FORCE_STATIC_EXECUTABLE := true
32LOCAL_STATIC_LIBRARIES := libc
33
34include $(BUILD_EXECUTABLE)
35