author | duke |
Wed, 05 Jul 2017 17:56:44 +0200 | |
changeset 11078 | 736a63b854f3 |
parent 9035 | 1255eb81cc2f |
child 12047 | 320a714614e9 |
permissions | -rw-r--r-- |
2 | 1 |
# |
9035
1255eb81cc2f
7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents:
8583
diff
changeset
|
2 |
# Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
# published by the Free Software Foundation. Oracle designates this |
2 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
2 | 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 |
# |
|
5506 | 21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
2 | 24 |
# |
25 |
||
26 |
BUILDDIR = ../.. |
|
27 |
PACKAGE = javax.sound |
|
28 |
LIBRARY = jsound |
|
29 |
PRODUCT = sun |
|
30 |
include $(BUILDDIR)/common/Defs.gmk |
|
31 |
||
32 |
# include defines for sound |
|
33 |
include SoundDefs.gmk |
|
34 |
||
35 |
# support for different mixer provider files on different platforms |
|
36 |
#MXSP = javax.sound.sampled.spi.MixerProvider |
|
37 |
# Mixer Service Provider Additional path |
|
38 |
#MXSPP_ADD = |
|
39 |
||
40 |
# |
|
41 |
# Add use of mapfile |
|
42 |
# |
|
43 |
FILES_m = mapfile-vers |
|
44 |
include $(BUILDDIR)/common/Mapfile-vers.gmk |
|
45 |
||
46 |
# |
|
47 |
# Files |
|
48 |
# |
|
49 |
include FILES_c.gmk |
|
50 |
||
51 |
# add java files |
|
52 |
AUTO_FILES_JAVA_DIRS = javax/sound com/sun/media/sound |
|
53 |
||
54 |
# |
|
55 |
# Files that just need cp. |
|
56 |
# |
|
57 |
SERVICEDIR = $(CLASSBINDIR)/META-INF/services |
|
58 |
||
59 |
FILES_copy = \ |
|
60 |
$(SERVICEDIR)/javax.sound.midi.spi.MidiDeviceProvider \ |
|
61 |
$(SERVICEDIR)/javax.sound.midi.spi.MidiFileWriter \ |
|
62 |
$(SERVICEDIR)/javax.sound.midi.spi.MidiFileReader \ |
|
63 |
$(SERVICEDIR)/javax.sound.midi.spi.SoundbankReader \ |
|
64 |
$(SERVICEDIR)/javax.sound.sampled.spi.AudioFileWriter \ |
|
65 |
$(SERVICEDIR)/javax.sound.sampled.spi.AudioFileReader \ |
|
66 |
$(SERVICEDIR)/javax.sound.sampled.spi.FormatConversionProvider \ |
|
67 |
$(SERVICEDIR)/javax.sound.sampled.spi.MixerProvider \ |
|
68 |
$(LIBDIR)/sound.properties |
|
69 |
||
70 |
FILES_mkdirs = \ |
|
71 |
$(CLASSBINDIR)/META-INF \ |
|
1846
4a53d636e2f4
6702956: OpenJDK: replace encumbered code (software synthesizer)
amenkov
parents:
2
diff
changeset
|
72 |
$(CLASSBINDIR)/META-INF/services |
2 | 73 |
|
74 |
FILES_copydirs = \ |
|
75 |
$(CLASSBINDIR) \ |
|
76 |
$(LIBDIR) \ |
|
77 |
$(FILES_mkdirs) |
|
78 |
||
79 |
FILES_c += $(FILES_$(PLATFORM)) |
|
80 |
||
81 |
||
82 |
# |
|
83 |
# system dependent flags |
|
84 |
# |
|
85 |
ifeq ($(PLATFORM), windows) |
|
86 |
CPPFLAGS += -DUSE_PLATFORM_MIDI_OUT=TRUE \ |
|
87 |
-DUSE_PLATFORM_MIDI_IN=TRUE \ |
|
88 |
-DUSE_PORTS=TRUE |
|
89 |
LDLIBS += winmm.lib |
|
90 |
||
91 |
# Windows always provides MIDI and ports |
|
92 |
INCLUDE_MIDI = TRUE |
|
93 |
INCLUDE_PORTS = TRUE |
|
94 |
||
95 |
# DirectSound handles directaudio (both i586 and amd64) |
|
96 |
SUBDIRS += jsoundds |
|
97 |
EXTRA_SOUND_JNI_LIBS += jsoundds |
|
98 |
#MXSPP_ADD = $(PLATFORM)-$(ARCH)/ |
|
99 |
endif # PLATFORM win32 |
|
100 |
||
101 |
ifeq ($(PLATFORM), linux) |
|
102 |
# ALSA handles directaudio, ports, and MIDI |
|
103 |
SUBDIRS += jsoundalsa |
|
104 |
EXTRA_SOUND_JNI_LIBS += jsoundalsa |
|
105 |
#MXSPP_ADD = $(PLATFORM)-$(ARCH)/ |
|
106 |
endif # PLATFORM linux |
|
107 |
||
108 |
ifeq ($(PLATFORM), solaris) |
|
4383
0ca32411c666
6744801: JCK api/javax_sound/interactive/RecordSoundTest.html#RecordSoundTest fails on Solaris10 x64 for -d64
amenkov
parents:
1846
diff
changeset
|
109 |
# build with ports and direct audio |
0ca32411c666
6744801: JCK api/javax_sound/interactive/RecordSoundTest.html#RecordSoundTest fails on Solaris10 x64 for -d64
amenkov
parents:
1846
diff
changeset
|
110 |
CPPFLAGS += -DUSE_PORTS=TRUE \ |
0ca32411c666
6744801: JCK api/javax_sound/interactive/RecordSoundTest.html#RecordSoundTest fails on Solaris10 x64 for -d64
amenkov
parents:
1846
diff
changeset
|
111 |
-DUSE_DAUDIO=TRUE |
2 | 112 |
|
4383
0ca32411c666
6744801: JCK api/javax_sound/interactive/RecordSoundTest.html#RecordSoundTest fails on Solaris10 x64 for -d64
amenkov
parents:
1846
diff
changeset
|
113 |
INCLUDE_PORTS = TRUE |
0ca32411c666
6744801: JCK api/javax_sound/interactive/RecordSoundTest.html#RecordSoundTest fails on Solaris10 x64 for -d64
amenkov
parents:
1846
diff
changeset
|
114 |
INCLUDE_DAUDIO = TRUE |
0ca32411c666
6744801: JCK api/javax_sound/interactive/RecordSoundTest.html#RecordSoundTest fails on Solaris10 x64 for -d64
amenkov
parents:
1846
diff
changeset
|
115 |
# build with empty MIDI i/o |
0ca32411c666
6744801: JCK api/javax_sound/interactive/RecordSoundTest.html#RecordSoundTest fails on Solaris10 x64 for -d64
amenkov
parents:
1846
diff
changeset
|
116 |
INCLUDE_MIDI = TRUE |
2 | 117 |
endif # PLATFORM solaris |
118 |
||
119 |
# for dynamic inclusion of extra sound libs: these |
|
120 |
# JNI libs will be loaded from Platform.java |
|
4116
54b55d640d9a
6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents:
1846
diff
changeset
|
121 |
CPPFLAGS += -DEXTRA_SOUND_JNI_LIBS='"$(EXTRA_SOUND_JNI_LIBS)"' |
2 | 122 |
|
123 |
# integrate MIDI i/o in jsound lib |
|
124 |
ifeq ($(INCLUDE_MIDI),TRUE) |
|
125 |
FILES_c += $(MIDIFILES_c) |
|
126 |
FILES_export += $(MIDIFILES_export) |
|
127 |
endif |
|
128 |
||
129 |
# integrate port files in jsound lib |
|
130 |
ifeq ($(INCLUDE_PORTS),TRUE) |
|
131 |
FILES_c += $(PORTFILES_c) |
|
132 |
FILES_export += $(PORTFILES_export) |
|
133 |
endif |
|
134 |
||
135 |
# integrate port files in jsound lib |
|
136 |
ifeq ($(INCLUDE_DAUDIO),TRUE) |
|
137 |
FILES_c += $(DAUDIOFILES_c) |
|
138 |
FILES_export += $(DAUDIOFILES_export) |
|
139 |
endif |
|
140 |
||
141 |
# |
|
142 |
# Extra cc/linker flags. |
|
143 |
# |
|
144 |
CPPFLAGS += \ |
|
145 |
-I$(SHARE_SRC)/native/com/sun/media/sound |
|
146 |
||
147 |
# |
|
148 |
# Add to the ambient VPATH. |
|
149 |
# |
|
150 |
vpath %.c $(SHARE_SRC)/native/com/sun/media/sound |
|
151 |
vpath %.c $(PLATFORM_SRC)/native/com/sun/media/sound |
|
152 |
vpath %.cpp $(PLATFORM_SRC)/native/com/sun/media/sound |
|
153 |
||
154 |
||
155 |
# |
|
156 |
# Include rules |
|
157 |
# |
|
158 |
include $(BUILDDIR)/common/Library.gmk |
|
4917
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4665
diff
changeset
|
159 |
include $(BUILDDIR)/common/Subdirs.gmk |
2 | 160 |
|
161 |
# |
|
162 |
# Rules that copy files. |
|
163 |
# |
|
164 |
||
165 |
build: copy-files |
|
166 |
$(SUBDIRS-loop) |
|
167 |
||
168 |
copy-files: $(FILES_copy) |
|
169 |
||
170 |
#$(SERVICEDIR)/$(MXSP): $(SHARE_SRC)/classes/com/sun/media/sound/services/$(MXSPP_ADD)$(MXSP) |
|
171 |
# $(install-file) |
|
172 |
||
173 |
$(SERVICEDIR)/%: $(SHARE_SRC)/classes/com/sun/media/sound/services/% |
|
174 |
$(install-file) |
|
175 |
||
176 |
$(LIBDIR)/audio/%: $(SHARE_SRC)/lib/audio/% |
|
177 |
$(install-file) |
|
178 |
||
179 |
$(LIBDIR)/%: $(SHARE_SRC)/lib/% |
|
180 |
$(install-file) |
|
181 |
||
182 |
# |
|
183 |
# Since we build more than the javax.sound (as stated in the |
|
184 |
# PACKAGE variable), we need to nuke the extra packages explicitly. |
|
185 |
# |
|
186 |
clean clobber:: |
|
187 |
$(SUBDIRS-loop) |
|
188 |
||
189 |
clean clobber:: |
|
190 |
$(RM) -r $(CLASSBINDIR)/com/sun/media/sound $(LIBDIR)/audio |
|
191 |
$(RM) $(FILES_copy) |
|
192 |
||
193 |
# |
|
194 |
# Declare extra phony targets. |
|
195 |
# |
|
196 |
.PHONY: copy-files |