get tinyshell from http://groups.google.com/group/tinypy/browse_thread/thread/27a28294314abdb5
#Android.mk for tinypy.
#gcc -O3 tinyshell.c -I ../build/ -lm -o ../build/tinyshell
ifneq ($(TARGET_SIMULATOR),true)
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= tinyshell.c
LOCAL_MODULE:= tinyshell
LOCAL_CFLAGS += -I $(LOCAL_PATH)/build/
LOCAL_CFLAGS += -lm
include $(BUILD_EXECUTABLE)
endif
it is built from rev 98
svn --revision 98 checkout http://tinypy.googlecode.com/svn/trunk/ tinypy-read-onlybc.c get from building the new version
svn checkout http://tinypy.googlecode.com/svn/trunk/ tinypy-read-only
#Android.mk for tinypy.
#gcc -O3 tinyshell.c -I ../build/ -lm -o ../build/tinyshell
ifneq ($(TARGET_SIMULATOR),true)
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= tinyshell.c
LOCAL_MODULE:= tinyshell
LOCAL_CFLAGS += -I $(LOCAL_PATH)/build/
LOCAL_CFLAGS += -lm
include $(BUILD_EXECUTABLE)
endif
Comments