mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
7bec5ddb55
header
23 lines
333 B
Makefile
23 lines
333 B
Makefile
###
|
|
##
|
|
# Makefile for RetroArch Android.
|
|
##
|
|
|
|
all:
|
|
ndk-build
|
|
|
|
clean:
|
|
ndk-build clean
|
|
|
|
headers:
|
|
javah -o android/com_retroarch_rruntime.h -classpath android/bin/classes com.retroarch.rruntime
|
|
|
|
install:
|
|
adb install retroarch-android.apk
|
|
|
|
uninstall:
|
|
adb uninstall com.retroarch
|
|
|
|
test_shader:
|
|
cgc -ogles -profile glslf $(FILE)
|