Home | History | Annotate | Download | only in jni
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 LOCAL_MODULE := test_ansi_c
      5 LOCAL_SRC_FILES := test_ansi.c
      6 LOCAL_CFLAGS += -ansi
      7 include $(BUILD_EXECUTABLE)
      8 
      9 include $(CLEAR_VARS)
     10 LOCAL_MODULE := test_ansi_cpp
     11 LOCAL_SRC_FILES := test_ansi.cpp
     12 LOCAL_CFLAGS += -ansi
     13 include $(BUILD_EXECUTABLE)
     14