0N/A#
3767N/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
2362N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
2362N/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,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/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
4632N/Aifeq ($(PLATFORM), macosx)
4632N/A CPPFLAGS += -DX_PLATFORM=X_MACOSX
4632N/Aendif # PLATFORM macosx
4632N/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
1772N/Aifeq ($(ZERO_BUILD), true)
1772N/A CPPFLAGS += -DX_ARCH=X_ZERO
1772N/Aelse
1772N/A ifeq ($(ARCH), i586)
1772N/A CPPFLAGS += -DX_ARCH=X_I586
1772N/A endif # ARCH i586
0N/A
1772N/A ifeq ($(ARCH), sparc)
1772N/A CPPFLAGS += -DX_ARCH=X_SPARC
1772N/A endif # ARCH sparc
0N/A
1772N/A ifeq ($(ARCH), sparcv9)
1772N/A CPPFLAGS += -DX_ARCH=X_SPARCV9
1772N/A endif # ARCH sparcv9
1772N/A
1772N/A ifeq ($(ARCH), amd64)
1772N/A CPPFLAGS += -DX_ARCH=X_AMD64
1772N/A endif # ARCH amd64
3767N/A
3767N/A ifeq ($(ARCH), arm)
3767N/A CPPFLAGS += -DX_ARCH=X_ARM
3767N/A endif # ARCH arm
3767N/A
3767N/A ifeq ($(ARCH), ppc)
3767N/A CPPFLAGS += -DX_ARCH=X_PPC
3767N/A endif # ARCH ppc
3767N/A
1772N/Aendif
0N/A
0N/A
0N/A# files needed for MIDI i/o
0N/AMIDIFILES_c = \
0N/A MidiInDevice.c \
0N/A MidiInDeviceProvider.c \
0N/A MidiOutDevice.c \
0N/A MidiOutDeviceProvider.c \
0N/A PlatformMidi.c
0N/A
0N/AMIDIFILES_export = \
0N/A com/sun/media/sound/MidiInDevice.java \
0N/A com/sun/media/sound/MidiInDeviceProvider.java \
0N/A com/sun/media/sound/MidiOutDevice.java \
0N/A com/sun/media/sound/MidiOutDeviceProvider.java
0N/A
0N/A# files needed for ports
0N/APORTFILES_c = \
0N/A PortMixerProvider.c \
0N/A PortMixer.c
0N/A
0N/APORTFILES_export = \
0N/A com/sun/media/sound/PortMixer.java \
0N/A com/sun/media/sound/PortMixerProvider.java
0N/A
0N/A# files needed for direct audio
0N/ADAUDIOFILES_c = \
0N/A DirectAudioDeviceProvider.c \
0N/A DirectAudioDevice.c
0N/A
0N/ADAUDIOFILES_export = \
0N/A com/sun/media/sound/DirectAudioDeviceProvider.java \
0N/A com/sun/media/sound/DirectAudioDevice.java
0N/A
0N/A