summaryrefslogtreecommitdiffhomepage
path: root/src/android/jni/Android.mk
diff options
context:
space:
mode:
authorRay <[email protected]>2017-05-16 00:20:17 +0200
committerGitHub <[email protected]>2017-05-16 00:20:17 +0200
commitf8a4498a242e685e528bd1ac6d84378947daff7d (patch)
treefd4e83886e52c8aca3b9c5d9586a338546f2044e /src/android/jni/Android.mk
parent1ed3d3285f1c1f6a01e0588ec46a177c84b864f5 (diff)
parent65e6a6db53552fa241e81ae52b4258f7969b8771 (diff)
downloadraylib-f8a4498a242e685e528bd1ac6d84378947daff7d.tar.gz
raylib-f8a4498a242e685e528bd1ac6d84378947daff7d.zip
Merge pull request #286 from raysan5/develop
Integrate develop branch
Diffstat (limited to 'src/android/jni/Android.mk')
-rw-r--r--src/android/jni/Android.mk58
1 files changed, 0 insertions, 58 deletions
diff --git a/src/android/jni/Android.mk b/src/android/jni/Android.mk
deleted file mode 100644
index 687c6577..00000000
--- a/src/android/jni/Android.mk
+++ /dev/null
@@ -1,58 +0,0 @@
-#**************************************************************************************************
-#
-# raylib for Android
-#
-# Static library compilation
-#
-# Copyright (c) 2014-2016 Ramon Santamaria (@raysan5)
-#
-# This software is provided "as-is", without any express or implied warranty. In no event
-# will the authors be held liable for any damages arising from the use of this software.
-#
-# Permission is granted to anyone to use this software for any purpose, including commercial
-# applications, and to alter it and redistribute it freely, subject to the following restrictions:
-#
-# 1. The origin of this software must not be misrepresented; you must not claim that you
-# wrote the original software. If you use this software in a product, an acknowledgment
-# in the product documentation would be appreciated but is not required.
-#
-# 2. Altered source versions must be plainly marked as such, and must not be misrepresented
-# as being the original software.
-#
-# 3. This notice may not be removed or altered from any source distribution.
-#
-#**************************************************************************************************
-
-# Path of the current directory (i.e. the directory containing the Android.mk file itself)
-LOCAL_PATH := $(call my-dir)
-
-# raylib static library compilation
-# NOTE: It uses source placed on relative path ../../src from this file
-#-----------------------------------------------------------------------
-# Makefile that will clear many LOCAL_XXX variables for you
-include $(CLEAR_VARS)
-
-# Module name
-LOCAL_MODULE := raylib
-
-# Module source files
-LOCAL_SRC_FILES :=\
- ../../core.c \
- ../../rlgl.c \
- ../../textures.c \
- ../../text.c \
- ../../shapes.c \
- ../../models.c \
- ../../utils.c \
- ../../audio.c \
- ../../external/stb_vorbis.c \
-
-# Required includes paths (.h)
-LOCAL_C_INCLUDES := $(LOCAL_PATH) $(LOCAL_PATH)/include $(LOCAL_PATH)/../..
-
-# Required flags for compilation: defines PLATFORM_ANDROID and GRAPHICS_API_OPENGL_ES2
-LOCAL_CFLAGS := -Wall -std=c99 -Wno-missing-braces -DPLATFORM_ANDROID -DGRAPHICS_API_OPENGL_ES2
-
-# Build the static library libraylib.a
-include $(BUILD_STATIC_LIBRARY)
-#--------------------------------------------------------------------