jdk/make/javax/sound/jsoundhs/FILES.gmk
changeset 1944 34c52e8a097b
parent 1943 d3de53b2070d
parent 1879 04b2620edc72
child 1951 17ae6ba5de7a
equal deleted inserted replaced
1943:d3de53b2070d 1944:34c52e8a097b
     1 #
       
     2 # Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
       
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4 #
       
     5 # This code is free software; you can redistribute it and/or modify it
       
     6 # under the terms of the GNU General Public License version 2 only, as
       
     7 # published by the Free Software Foundation.  Sun designates this
       
     8 # particular file as subject to the "Classpath" exception as provided
       
     9 # by Sun in the LICENSE file that accompanied this code.
       
    10 #
       
    11 # This code is distributed in the hope that it will be useful, but WITHOUT
       
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14 # version 2 for more details (a copy is included in the LICENSE file that
       
    15 # accompanied this code).
       
    16 #
       
    17 # You should have received a copy of the GNU General Public License version
       
    18 # 2 along with this work; if not, write to the Free Software Foundation,
       
    19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20 #
       
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
       
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
       
    23 # have any questions.
       
    24 #
       
    25 
       
    26 FILES_c = \
       
    27 	Utilities.c \
       
    28 	MixerThread.c \
       
    29 	HeadspaceMixer.c \
       
    30 	MixerClip.c \
       
    31 	MixerSourceLine.c \
       
    32 	SimpleInputDevice.c \
       
    33 	SimpleInputDeviceProvider.c \
       
    34 	HeadspaceSoundbank.c \
       
    35 	MixerMidiChannel.c \
       
    36 	AbstractPlayer.c \
       
    37 	MixerSequencer.c \
       
    38 	MixerSynth.c
       
    39 
       
    40 FILES_engine = \
       
    41 	DriverTools.c \
       
    42 	GenAudioCaptureStreams.c \
       
    43 	GenAudioStreams.c \
       
    44 	GenOutput.c \
       
    45 	GenPatch.c \
       
    46 	GenReverb.c \
       
    47 	GenSample.c \
       
    48 	GenSeq.c \
       
    49 	GenSetup.c \
       
    50 	GenSong.c \
       
    51 	GenSynth.c \
       
    52 	GenSynthFilters.c \
       
    53 	GenSynthInterp2.c \
       
    54 	GenSynthResample.c \
       
    55 	NewNewLZSS.c \
       
    56 	SampleTools.c \
       
    57 	SMOD_Volume_Scaler.c \
       
    58 	X_API.c \
       
    59 	X_Decompress.c \
       
    60 	X_IMA.c \
       
    61 	GenFiltersReverb.c \
       
    62 	GenInterp2Reverb.c \
       
    63 	GenSoundFiles.c \
       
    64 	SincResample.c
       
    65 
       
    66 FILES_solaris = \
       
    67 	HAE_API_SolarisOS.c \
       
    68 	HAE_API_SolarisOS_Capture.c
       
    69 
       
    70 FILES_linux = \
       
    71 	HAE_API_LinuxOS.c \
       
    72 	HAE_API_LinuxOS_Capture.c
       
    73 
       
    74 FILES_windows = \
       
    75 	HAE_API_WinOS.c \
       
    76 	HAE_API_WinOS_Capture.c \
       
    77 	HAE_API_WinOS_Synth.c
       
    78 
       
    79 FILES_export = \
       
    80 	com/sun/media/sound/AbstractPlayer.java \
       
    81 	com/sun/media/sound/HeadspaceMixer.java \
       
    82 	com/sun/media/sound/HeadspaceSoundbank.java \
       
    83 	com/sun/media/sound/MixerClip.java \
       
    84 	com/sun/media/sound/MixerMidiChannel.java \
       
    85 	com/sun/media/sound/MixerSequencer.java \
       
    86 	com/sun/media/sound/MixerSourceLine.java \
       
    87 	com/sun/media/sound/MixerSynth.java \
       
    88 	com/sun/media/sound/MixerThread.java \
       
    89 	com/sun/media/sound/SimpleInputDevice.java \
       
    90 	com/sun/media/sound/SimpleInputDeviceProvider.java
       
    91