Home | History | Annotate | Download | only in memtest
      1 # Copyright 2006 The Android Open Source Project
      2 
      3 LOCAL_PATH:= $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_SRC_FILES:= memtest.cpp.arm \
      7 		  thumb.cpp
      8 
      9 
     10 LOCAL_SHARED_LIBRARIES := libc 
     11 
     12 LOCAL_MODULE:= memtest
     13 
     14 LOCAL_MODULE_TAGS := optional
     15 
     16 ## LOCAL_CFLAGS += -fstack-protector-all
     17 LOCAL_CFLAGS += -fomit-frame-pointer
     18 
     19 include $(BUILD_EXECUTABLE)
     20