Home | History | Annotate | Download | only in pagingtest
      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_CFLAGS := -std=gnu11
     12 
     13 LOCAL_MODULE:= pagingtest
     14 
     15 LOCAL_MODULE_TAGS := tests
     16 
     17 LOCAL_MODULE_PATH := $(local_target_dir)
     18 LOCAL_MULTILIB := both
     19 LOCAL_MODULE_STEM_32 := pagingtest
     20 LOCAL_MODULE_STEM_64 := pagingtest64
     21 
     22 include $(BUILD_EXECUTABLE)
     23