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:= \
      7 		memtest.cpp.arm \
      8 		fptest.cpp \
      9 		thumb.cpp \
     10 		bandwidth.cpp \
     11 
     12 
     13 LOCAL_SHARED_LIBRARIES := libc libstlport
     14 
     15 LOCAL_MODULE:= memtest
     16 
     17 LOCAL_MODULE_TAGS := optional
     18 
     19 ## LOCAL_CFLAGS += -fstack-protector-all
     20 LOCAL_CFLAGS += -fomit-frame-pointer
     21 LOCAL_C_INCLUDES += bionic external/stlport/stlport
     22 
     23 include $(BUILD_EXECUTABLE)
     24 endif
     25