mirror of
https://github.com/libretro/RetroArch
synced 2025-01-08 09:41:47 +00:00
0c7af232cc
for now - also changed some things in Griffin so things work again after null drivers commit
13 lines
439 B
Makefile
13 lines
439 B
Makefile
RARCH_VERSION = "0.9.6"
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
LOCAL_MODULE := retroarch
|
|
LOCAL_SRC_FILES = ../../console/griffin/griffin.c ../../console/rzlib/rzlib.c
|
|
|
|
LOCAL_CFLAGS = -DANDROID -DHAVE_DYNAMIC -DHAVE_ZLIB -DINLINE=inline -DRARCH_CONSOLE -DLSB_FIRST -D__LIBRETRO__ -DHAVE_CONFIGFILE=1 -DHAVE_GRIFFIN=1 -DPACKAGE_VERSION=\"$(RARCH_VERSION)\" -Dmain=rarch_main -std=gnu99
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|