SoundDefs.gmk revision 3767
0N/A#
2362N/A# Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
0N/A# by Oracle in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
2362N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2362N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A# or visit www.oracle.com if you need additional information or have any
0N/A# questions.
0N/A#
0N/A
0N/A# defines common for all Java Sound native code
0N/A
0N/ASUBDIRS=
0N/AEXTRA_SOUND_JNI_LIBS=
0N/A
0N/A#
0N/A# Extra cc/linker flags.
0N/A#
0N/A# system dependent flags
0N/Aifeq ($(PLATFORM), windows)
0N/A CPPFLAGS += -DX_PLATFORM=X_WINDOWS
0N/Aendif # PLATFORM windows
0N/A
0N/Aifeq ($(PLATFORM), linux)
0N/A CPPFLAGS += -DX_PLATFORM=X_LINUX
0N/Aendif # PLATFORM linux
0N/A
0N/Aifeq ($(PLATFORM), solaris)
0N/A CPPFLAGS += -DX_PLATFORM=X_SOLARIS
0N/A
0N/A # Solaris needs specific binding to libc
0N/A LDFLAGS += -lc
0N/A
0N/A #
0N/A # Turn off C++ exception handling.
0N/A #
0N/A ifneq ($(CC_VERSION),gcc)
0N/A CXXFLAGS += -noex
0N/A endif # CC_VERSION
0N/A
0N/Aendif # PLATFORM solaris
0N/A
0N/Aifeq ($(ZERO_BUILD), true)
0N/A CPPFLAGS += -DX_ARCH=X_ZERO
0N/Aelse
0N/A ifeq ($(ARCH), i586)
0N/A CPPFLAGS += -DX_ARCH=X_I586
0N/A endif # ARCH i586
0N/A
0N/A ifeq ($(ARCH), sparc)
0N/A CPPFLAGS += -DX_ARCH=X_SPARC
0N/A endif # ARCH sparc
0N/A
0N/A ifeq ($(ARCH), sparcv9)
0N/A CPPFLAGS += -DX_ARCH=X_SPARCV9
0N/A endif # ARCH sparcv9
0N/A
0N/A ifeq ($(ARCH), amd64)
0N/A CPPFLAGS += -DX_ARCH=X_AMD64
0N/A endif # ARCH amd64
0N/A
0N/A ifeq ($(ARCH), arm)
0N/A CPPFLAGS += -DX_ARCH=X_ARM
0N/A endif # ARCH arm
0N/A
0N/A ifeq ($(ARCH), ppc)
0N/A CPPFLAGS += -DX_ARCH=X_PPC
0N/A endif # ARCH ppc
0N/A
0N/Aendif
0N/A
0N/A
0N/A# files needed for MIDI i/o
0N/AMIDIFILES_c = \
MidiInDevice.c \
MidiInDeviceProvider.c \
MidiOutDevice.c \
MidiOutDeviceProvider.c \
PlatformMidi.c
MIDIFILES_export = \
com/sun/media/sound/MidiInDevice.java \
com/sun/media/sound/MidiInDeviceProvider.java \
com/sun/media/sound/MidiOutDevice.java \
com/sun/media/sound/MidiOutDeviceProvider.java
# files needed for ports
PORTFILES_c = \
PortMixerProvider.c \
PortMixer.c
PORTFILES_export = \
com/sun/media/sound/PortMixer.java \
com/sun/media/sound/PortMixerProvider.java
# files needed for direct audio
DAUDIOFILES_c = \
DirectAudioDeviceProvider.c \
DirectAudioDevice.c
DAUDIOFILES_export = \
com/sun/media/sound/DirectAudioDeviceProvider.java \
com/sun/media/sound/DirectAudioDevice.java