mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-12-22 20:30:22 +00:00
Build testdisplay and testvm
- Build system is becoming a bit redundant, but eh, would rather just avoid the blackhole of build system refactoring that =P
This commit is contained in:
parent
c3969f9d1d
commit
1d6e9cd0d5
1
Android/jni/testdisplay
Symbolic link
1
Android/jni/testdisplay
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
build.sh
|
32
Android/jni/testdisplay.mk
Normal file
32
Android/jni/testdisplay.mk
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
LOCAL_PATH := $(call my-dir)
|
||||||
|
|
||||||
|
include $(CLEAR_VARS)
|
||||||
|
|
||||||
|
PACKAGE_IDENTIFIER := "org.deadc0de.apple2"
|
||||||
|
PACKAGE_NAME := "apple2ix"
|
||||||
|
COMMON_SOURCES_MK := $(LOCAL_PATH)/sources.mk
|
||||||
|
include $(COMMON_SOURCES_MK)
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Android build config
|
||||||
|
|
||||||
|
LOCAL_MODULE := libapple2ix
|
||||||
|
LOCAL_SRC_FILES := jnihooks.c $(APPLE2_SRC_PATH)/test/testcommon.c $(APPLE2_SRC_PATH)/test/testdisplay.c
|
||||||
|
LOCAL_CFLAGS := $(APPLE2_BASE_CFLAGS) -DTEST_DISPLAY -DTESTING=1
|
||||||
|
LOCAL_LDLIBS := -llog -landroid -lGLESv2 -lz
|
||||||
|
|
||||||
|
# Add assembly files first ... mostly for the benefit of the ARM assembler ...
|
||||||
|
ifeq ($(TARGET_ARCH_ABI),x86)
|
||||||
|
LOCAL_SRC_FILES += $(APPLE2_X86_SRC)
|
||||||
|
else
|
||||||
|
LOCAL_SRC_FILES += $(APPLE2_ARM_SRC)
|
||||||
|
endif
|
||||||
|
|
||||||
|
LOCAL_SRC_FILES += $(APPLE2_MAIN_SRC) $(APPLE2_META_SRC) $(APPLE2_VIDEO_SRC)
|
||||||
|
|
||||||
|
# Build a shared library and let Java/Dalvik drive
|
||||||
|
include $(BUILD_SHARED_LIBRARY)
|
||||||
|
|
||||||
|
# --OR-- Build an executable so native can drive this show
|
||||||
|
#include $(BUILD_EXECUTABLE)
|
||||||
|
|
1
Android/jni/testvm
Symbolic link
1
Android/jni/testvm
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
build.sh
|
32
Android/jni/testvm.mk
Normal file
32
Android/jni/testvm.mk
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
LOCAL_PATH := $(call my-dir)
|
||||||
|
|
||||||
|
include $(CLEAR_VARS)
|
||||||
|
|
||||||
|
PACKAGE_IDENTIFIER := "org.deadc0de.apple2"
|
||||||
|
PACKAGE_NAME := "apple2ix"
|
||||||
|
COMMON_SOURCES_MK := $(LOCAL_PATH)/sources.mk
|
||||||
|
include $(COMMON_SOURCES_MK)
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Android build config
|
||||||
|
|
||||||
|
LOCAL_MODULE := libapple2ix
|
||||||
|
LOCAL_SRC_FILES := jnihooks.c $(APPLE2_SRC_PATH)/test/testcommon.c $(APPLE2_SRC_PATH)/test/testvm.c
|
||||||
|
LOCAL_CFLAGS := $(APPLE2_BASE_CFLAGS) -DTEST_VM -DTESTING=1 -DCPU_TRACING=1 -DDISK_TRACING=1 -DVM_TRACING=1
|
||||||
|
LOCAL_LDLIBS := -llog -landroid -lGLESv2 -lz
|
||||||
|
|
||||||
|
# Add assembly files first ... mostly for the benefit of the ARM assembler ...
|
||||||
|
ifeq ($(TARGET_ARCH_ABI),x86)
|
||||||
|
LOCAL_SRC_FILES += $(APPLE2_X86_SRC)
|
||||||
|
else
|
||||||
|
LOCAL_SRC_FILES += $(APPLE2_ARM_SRC)
|
||||||
|
endif
|
||||||
|
|
||||||
|
LOCAL_SRC_FILES += $(APPLE2_MAIN_SRC) $(APPLE2_META_SRC) $(APPLE2_VIDEO_SRC)
|
||||||
|
|
||||||
|
# Build a shared library and let Java/Dalvik drive
|
||||||
|
include $(BUILD_SHARED_LIBRARY)
|
||||||
|
|
||||||
|
# --OR-- Build an executable so native can drive this show
|
||||||
|
#include $(BUILD_EXECUTABLE)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user