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