mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-15 08:52:15 +00:00
4597b03873
Opens in Android Studio but haven't even tried to build it yet (it won't.. I know that much!)
59 lines
1.8 KiB
Makefile
59 lines
1.8 KiB
Makefile
# Copyright (C) 2009 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CFLAGS := -O2
|
|
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include/ $(LOCAL_PATH)/OpenAL32/Include
|
|
|
|
LOCAL_MODULE := openal
|
|
LOCAL_SRC_FILES :=\
|
|
Alc/ALc.c \
|
|
Alc/ALu.c \
|
|
Alc/alcConfig.c \
|
|
Alc/alcDedicated.c \
|
|
Alc/alcEcho.c \
|
|
Alc/alcModulator.c \
|
|
Alc/alcReverb.c \
|
|
Alc/alcRing.c \
|
|
Alc/alcThread.c \
|
|
Alc/bs2b.c \
|
|
Alc/helpers.c \
|
|
Alc/hrtf.c \
|
|
Alc/mixer.c \
|
|
Alc/panning.c \
|
|
Alc/backends/opensl.c \
|
|
Alc/backends/loopback.c \
|
|
Alc/backends/android.c \
|
|
Alc/backends/null.c \
|
|
OpenAL32/alAuxEffectSlot.c \
|
|
OpenAL32/alBuffer.c \
|
|
OpenAL32/alEffect.c \
|
|
OpenAL32/alError.c \
|
|
OpenAL32/alExtension.c \
|
|
OpenAL32/alFilter.c \
|
|
OpenAL32/alListener.c \
|
|
OpenAL32/alSource.c \
|
|
OpenAL32/alState.c \
|
|
OpenAL32/alThunk.c \
|
|
|
|
|
|
LOCAL_LDLIBS := -ldl -llog -lOpenSLES
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
#include $(BUILD_STATIC_LIBRARY)
|