1 local_target_dir := $(TARGET_OUT_DATA)/local/tmp 2 LOCAL_PATH:= $(call my-dir) 3 include $(CLEAR_VARS) 4 5 LOCAL_SRC_FILES:= \ 6 pagingtest.c \ 7 mmap_test.c \ 8 pageinout_test.c \ 9 thrashing_test.c 10 11 LOCAL_MODULE:= pagingtest 12 13 LOCAL_MODULE_TAGS := tests 14 15 LOCAL_MODULE_PATH := $(local_target_dir) 16 LOCAL_MULTILIB := both 17 LOCAL_MODULE_STEM_32 := pagingtest 18 LOCAL_MODULE_STEM_64 := pagingtest64 19 20 include $(BUILD_EXECUTABLE) 21