CompileDemos.gmk 18.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
#
# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation.  Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#

default: all

include $(SPEC)
include MakeBase.gmk
include JavaCompilation.gmk
include NativeCompilation.gmk

# Setup the java compilers for the JDK build.
include Setup.gmk

# Append demo goals to this variable.
BUILD_DEMOS=

# The demo structure and contents should really be cleaned up.
# Now every other demo has its own quirks where to put the
# READMEs and other files.

##################################################################################################

define SetupAppletDemo
     $$(eval $$(call SetupJavaCompilation,BUILD_DEMO_APPLET_$1,\
47
                SETUP:=GENERATE_USINGJDKBYTECODE,\
48
		SRC:=$(JDK_TOPDIR)/src/$3share/demo/applets/$1,\
49 50 51
		BIN:=$(JDK_OUTPUTDIR)/demo/applets/$1,\
		COPY:=.html .java .xyz .obj .au .gif,\
		DISABLE_SJAVAC:=$2))
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
     BUILD_DEMOS += $$(BUILD_DEMO_APPLET_$1)
endef

$(eval $(call SetupAppletDemo,ArcTest))
$(eval $(call SetupAppletDemo,BarChart))
$(eval $(call SetupAppletDemo,Blink))
$(eval $(call SetupAppletDemo,CardTest))
$(eval $(call SetupAppletDemo,Clock))
$(eval $(call SetupAppletDemo,DitherTest))
$(eval $(call SetupAppletDemo,DrawTest))
$(eval $(call SetupAppletDemo,Fractal))
$(eval $(call SetupAppletDemo,GraphicsTest))
$(eval $(call SetupAppletDemo,MoleculeViewer))
$(eval $(call SetupAppletDemo,NervousText))
$(eval $(call SetupAppletDemo,SimpleGraph))
$(eval $(call SetupAppletDemo,SortDemo))
$(eval $(call SetupAppletDemo,SpreadSheet))
# Build WireFrame without a server since it
# has a class Matrix3D that also exists in MoleculeViewer.
71
$(eval $(call SetupAppletDemo,WireFrame,true))
72 73 74

ifndef OPENJDK
    $(eval $(call SetupAppletDemo,Animator,,closed/))
75
    $(eval $(call SetupAppletDemo,GraphLayout,true,closed/))
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
    $(eval $(call SetupAppletDemo,JumpingBox,,closed/))
    $(eval $(call SetupAppletDemo,TicTacToe,,closed/))
endif

##################################################################################################

PATTERNS_TO_COPY=.html .txt .properties .js .gif .jpg .theme .data .opt README .c .h .png .ttf

define SetupDemo
    # Param 1 = Name of the demo
    # Param 2 = Subdirectory of the demo below the demo directory.
    # Param 3 = Additional javac flags.
    # Param 4 = The main class for the jar.
    # Param 5 = Additional source directory.
    # Param 6 = Extra dir below $(JDK_TOPDIR)/src (closed)
    # Param 7 = List of files to copy
    # Param 8 = Base name of jar file. Defaults to $1
    # Param 9 = Exclude list
    # Param 10 = Extra copy patterns
    # Param 11 = Extra manifest attribute
    # Param 12 = Suffix for compiler setup name

    # In some demos the source is found in a subdir called src.
    $1_MAIN_SRC:=$$(wildcard $(JDK_TOPDIR)/src/$6share/demo/$2/$1/src)
    ifeq ($$($1_MAIN_SRC),)
        $1_MAIN_SRC:=$(JDK_TOPDIR)/src/$6share/demo/$2/$1
    endif

    ifneq ($8,)
        $1_JARFILE := $8.jar
    else
        $1_JARFILE := $1.jar
    endif

O
ohair 已提交
110
    ifeq ($(findstring $1,Laffy SwingSet3),)
111
        $$(eval $$(call SetupJavaCompilation,BUILD_DEMO_$1,\
112
                SETUP:=GENERATE_USINGJDKBYTECODE,\
113 114
                ADD_JAVAC_FLAGS:=$3,\
		SRC:=$$($1_MAIN_SRC) $5,\
115
		BIN:=$(JDK_OUTPUTDIR)/democlasses/$2/$1,\
116
		COPY:=$(PATTERNS_TO_COPY) $(10),\
117
		JAR:=$(JDK_OUTPUTDIR)/demo/$2/$1/$$($1_JARFILE),\
118 119 120
		JARMAIN:=$4,\
		MANIFEST:=$(JDK_TOPDIR)/make/tools/manifest.mf,\
		EXTRA_MANIFEST_ATTR:=$(11),\
121 122 123
		SRCZIP:=$(JDK_OUTPUTDIR)/demo/$2/$1/src.zip,\
		EXCLUDE_FILES:=$9,\
		DISABLE_SJAVAC:=$(12)))
124 125

        BUILD_DEMOS +=  $$(BUILD_DEMO_$1) \
126 127
			$(JDK_OUTPUTDIR)/demo/$2/$1/$$($1_JARFILE) \
			$(JDK_OUTPUTDIR)/demo/$2/$1/src.zip 
128 129 130 131
    endif

    # Copy files.
    $1_COPY_TARGETS :=  $$(patsubst $(JDK_TOPDIR)/src/$6share/demo/$2/$1/%,\
132
			$(JDK_OUTPUTDIR)/demo/$2/$1/%,\
133 134
			$$(wildcard $$(addprefix $(JDK_TOPDIR)/src/$6share/demo/$2/$1/,$7)))
    ifneq ($7,)
135
        $(JDK_OUTPUTDIR)/demo/$2/$1/% : $(JDK_TOPDIR)/src/$6share/demo/$2/$1/%
136 137 138
		$(MKDIR) -p $$(@D)
		$(CP) $$< $$@
		$(CHMOD) -f ug+w $$@
139 140 141 142 143 144 145

        BUILD_DEMOS += $$($1_COPY_TARGETS)
    endif

endef

$(eval $(call SetupDemo,CodePointIM,jfc,,CodePointIM,,,*.html))
146 147
$(JDK_OUTPUTDIR)/demo/jfc/CodePointIM/_the.services : \
			$(JDK_OUTPUTDIR)/demo/jfc/CodePointIM/CodePointIM.jar \
148
			$(JDK_TOPDIR)/src/share/demo/jfc/CodePointIM/java.awt.im.spi.InputMethodDescriptor
149
	(cd $(JDK_OUTPUTDIR)/demo/jfc/CodePointIM && \
150 151 152
		$(MKDIR) -p _the.tmp/META-INF/services && \
		$(CP) $(JDK_TOPDIR)/src/share/demo/jfc/CodePointIM/java.awt.im.spi.InputMethodDescriptor _the.tmp/META-INF/services && \
		cd _the.tmp && \
153
		$(JAR) uf $(JDK_OUTPUTDIR)/demo/jfc/CodePointIM/CodePointIM.jar META-INF/services/java.awt.im.spi.InputMethodDescriptor && \
154
		cd META-INF/services && \
155 156
		$(JAR) uf $(JDK_OUTPUTDIR)/demo/jfc/CodePointIM/CodePointIM.jar java.awt.im.spi.InputMethodDescriptor)
	$(RM) -r $(JDK_OUTPUTDIR)/demo/jfc/CodePointIM/_the.tmp
157
	$(TOUCH) $@
158

159
BUILD_DEMOS+=$(JDK_OUTPUTDIR)/demo/jfc/CodePointIM/_the.services
160 161 162 163 164 165 166 167 168

$(eval $(call SetupDemo,FileChooserDemo,jfc,,FileChooserDemo,,,README*))
$(eval $(call SetupDemo,Font2DTest,jfc,,Font2DTest,,,*.html *.txt))
$(eval $(call SetupDemo,Metalworks,jfc,,Metalworks,,,README*))
$(eval $(call SetupDemo,Notepad,jfc,,Notepad,,,README*))
$(eval $(call SetupDemo,SampleTree,jfc,,SampleTree,,,README*))
$(eval $(call SetupDemo,SwingApplet,jfc,,SwingApplet,,,README* *.html))
$(eval $(call SetupDemo,TableExample,jfc,,TableExample,,,README*))
$(eval $(call SetupDemo,TransparentRuler,jfc,,transparentruler.Ruler,,,README*))
169
$(eval $(call SetupDemo,jconsole-plugin,scripting,,,,,*.xml *.txt,,,,Main-Class: \n))
170
$(eval $(call SetupDemo,FullThreadDump,management,,FullThreadDump,,,README*))
171
$(eval $(call SetupDemo,JTop,management,,JTop,,,README*))
172 173
$(eval $(call SetupDemo,MemoryMonitor,management,,MemoryMonitor,,,README*))
$(eval $(call SetupDemo,VerboseGC,management,,VerboseGC,,,README*))
174
$(eval $(call SetupDemo,zipfs,nio,,,,,README* *.java,,,,Main-Class: \n))
175 176 177 178 179 180 181 182 183

ifndef OPENJDK
    $(eval $(call SetupDemo,Laffy,jfc,,,,closed/,*))
    $(eval $(call SetupDemo,SwingSet3,jfc,,,,closed/,*))

    $(eval $(call SetupDemo,Java2D,jfc,,java2d.Java2Demo,,closed/,*.html README*,Java2Demo))
    $(eval $(call SetupDemo,Stylepad,jfc,,Stylepad,\
		$(JDK_TOPDIR)/src/share/demo/jfc/Notepad,closed/,*.txt,,$(JDK_TOPDIR)/src/share/demo/jfc/Notepad/README.txt))
    $(eval $(call SetupDemo,SwingSet2,jfc,,SwingSet2,,closed/,README* *.html,,,.java COPYRIGHT,\
184
		SplashScreen-Image: resources/images/splash.png,true))
185 186

    BUILD_DEMOS += $(patsubst $(JDK_TOPDIR)/src/closed/share/demo/nbproject/%,\
187
			$(JDK_OUTPUTDIR)/demo/nbproject/%,\
188
			$(shell $(FIND) $(JDK_TOPDIR)/src/closed/share/demo/nbproject/ -type f))
189
    $(JDK_OUTPUTDIR)/demo/nbproject/% : $(JDK_TOPDIR)/src/closed/share/demo/nbproject/%
190 191 192
		$(MKDIR) -p $(@D)
		$(CP) $< $@
		$(CHMOD) -f ug+w $@
193 194 195 196 197 198 199
endif

##################################################################################################

# In the old makefiles, j2dbench was not compiled. 
#$(eval $(call SetupDemo,J2DBench,java2d,/src,,j2dbench/J2DBench))

200 201 202 203
# JVMTI demos are a bit strange and share some files, but be careful the
#    shared files are just the *.c and *.h files, not the README or sample
#    makefiles. So we always exclude the README.txt and sample.makefile.txt
#    from the extra sources.
204 205 206 207 208 209
define SetupJVMTIDemo
     # Param 1 = Name of the demo
     # Param 2 = add these directories to the includes, default is agent_util
     # Param 3 = extra CFLAGS
     # Param 4 = C or C++ (defaults to C)
     # Param 5 = libs for posix
210
     # Param 6 = libs for windows
211
     # Param 7 = libs for solaris
212 213 214 215 216 217
     BUILD_DEMO_JVMTI_$1_EXTRA_SRC:= \
        $$(wildcard $(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/demo/jvmti/$1) \
	$$(wildcard $$(addprefix $(JDK_TOPDIR)/src/share/demo/jvmti/,$2))
     BUILD_DEMO_JVMTI_$1_EXTRA_SRC_EXCLUDE:= \
	$$(wildcard $$(addprefix $(JDK_TOPDIR)/src/share/demo/jvmti/,$2)/README.txt) \
	$$(wildcard $$(addprefix $(JDK_TOPDIR)/src/share/demo/jvmti/,$2)/sample.makefile.txt)
218 219 220 221 222 223
     BUILD_DEMO_JVMTI_$1_EXTRA_INC:=$$(addprefix -I,$$(BUILD_DEMO_JVMTI_$1_EXTRA_SRC))
     BUILD_DEMO_JVMTI_$1_LANG:=C
     ifneq (,$4)
         BUILD_DEMO_JVMTI_$1_LANG:=$4
     endif
     ifeq (C++,$4)
224
         $1_EXTRA_CXX:=$(LDFLAGS_CXX_JDK) $(LIBCXX)
225
     endif
226

227 228 229
     $1_CXXFLAGS:=$(CXXFLAGS_JDKLIB) -I$(JDK_TOPDIR)/src/share/demo/jvmti/$1 \
		  $$(BUILD_DEMO_JVMTI_$1_EXTRA_INC) $3 \
		  $(CXXFLAGS_DEBUG_SYMBOLS)
230
     ifeq ($1-$(OPENJDK_TARGET_CPU_ARCH),waiters-sparc)
231 232
         $1_FILTER:=-xregs=no%appl
         $1_CXXFLAGS:=$$(filter-out $$($1_FILTER),$$($1_CXXFLAGS))
233 234
     endif

235 236 237 238 239 240
     # Workaround for CFLAGS_JDKLIB containing ',' on solaris. If this is added as 'CFLAGS' to the
     # eval call below, the comma gets expanded too early.
     BUILD_DEMO_JVMTI_$1_CFLAGS:=$(CFLAGS_JDKLIB) $(CFLAGS_DEBUG_SYMBOLS) \
		-I$(JDK_TOPDIR)/src/share/demo/jvmti/$1 $$(BUILD_DEMO_JVMTI_$1_EXTRA_INC) $3

     # Remove the -incremental:no setting to get .ilk-files like in the old build.
241 242 243
     $$(eval $$(call SetupNativeCompilation,BUILD_DEMO_JVMTI_$1,\
		SRC:=$(JDK_TOPDIR)/src/share/demo/jvmti/$1 $$(BUILD_DEMO_JVMTI_$1_EXTRA_SRC),\
		LANG:=$$(BUILD_DEMO_JVMTI_$1_LANG),\
244
		OPTIMIZATION:=LOW,\
245
		CXXFLAGS:=$$($1_CXXFLAGS),\
246 247
		LDFLAGS:=$(filter-out -incremental:no -opt:ref,$(LDFLAGS_JDKLIB)),\
		LDFLAGS_macosx:=$(call SET_EXECUTABLE_ORIGIN),\
248 249
		LDFLAGS_SUFFIX:=$$($1_EXTRA_CXX),\
		LDFLAGS_SUFFIX_posix:=$5,\
250 251 252 253 254
		LDFLAGS_SUFFIX_windows:=$6,\
		LDFLAGS_SUFFIX_solaris:=$7 -lc,\
		LDFLAGS_SUFFIX_linux:=$8,\
		VERSIONINFO_RESOURCE:=$(JDK_TOPDIR)/src/windows/resource/version.rc,\
		RC_FLAGS:=$$(RC_FLAGS) \
O
ohair 已提交
255 256 257
			  -D "JDK_FNAME=$1.dll" \
			  -D "JDK_INTERNAL_NAME=$1" \
			  -D "JDK_FTYPE=0x2L",\
258 259
		OBJECT_DIR:=$(JDK_OUTPUTDIR)/demoobjs/jvmti/$1,\
		OUTPUT_DIR:=$(JDK_OUTPUTDIR)/demo/jvmti/$1/lib,\
260
		LIBRARY:=$1))
261 262 263

    $$(eval $$(call SetupZipArchive,BUILD_DEMO_JVMTI_SRC_$1,\
		SRC:=$(JDK_TOPDIR)/src/share/demo/jvmti/$1 $$(BUILD_DEMO_JVMTI_$1_EXTRA_SRC),\
264 265
		EXCLUDE_FILES:=$$(BUILD_DEMO_JVMTI_$1_EXTRA_SRC_EXCLUDE), \
		ZIP:=$(JDK_OUTPUTDIR)/demo/jvmti/$1/src.zip))
266

267
     $(JDK_OUTPUTDIR)/demo/jvmti/$1/README.txt : $(JDK_TOPDIR)/src/share/demo/jvmti/$1/README.txt
268 269 270 271 272 273 274 275
		$(MKDIR) -p $$(@D)
		$(CP) $$< $$@
		$(CHMOD) -f ug+w $$@

     ifneq (,$$(wildcard $(JDK_TOPDIR)/src/share/demo/jvmti/$1/*.java))
         $$(eval $$(call SetupJavaCompilation,BUILD_DEMO_JVMTI_$1_JAVA,\
                SETUP:=GENERATE_USINGJDKBYTECODE,\
		SRC:=$(JDK_TOPDIR)/src/share/demo/jvmti/$1,\
276
		BIN:=$(JDK_OUTPUTDIR)/democlasses/jvmti/$1,\
277
		COPY:=$(PATTERNS_TO_COPY),\
278
		JAR:=$(JDK_OUTPUTDIR)/demo/jvmti/$1/$1.jar,\
279
		EXTRA_MANIFEST_ATTR:=Main-Class: \n,\
280 281
		MANIFEST:=$(JDK_TOPDIR)/make/tools/manifest.mf))

282
         BUILD_DEMOS += $(JDK_OUTPUTDIR)/demo/jvmti/$1/$1.jar
283 284
     endif

285
     BUILD_DEMOS += 	$$(BUILD_DEMO_JVMTI_$1) \
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
			$(JDK_OUTPUTDIR)/demo/jvmti/$1/src.zip \
			$(JDK_OUTPUTDIR)/demo/jvmti/$1/README.txt

     ifeq ($(OPENJDK_TARGET_OS),windows)
         # These files normally end up in OBJECT_DIR but for demos they
         # are supposed to be included in the distro.
         $(JDK_OUTPUTDIR)/demo/jvmti/$1/lib/$1.lib: $$(BUILD_DEMO_JVMTI_$1)
		$(CP) $(JDK_OUTPUTDIR)/demoobjs/jvmti/$1/$1.lib $$@

         $(JDK_OUTPUTDIR)/demo/jvmti/$1/lib/$1.exp: $$(BUILD_DEMO_JVMTI_$1)
		$(CP) $(JDK_OUTPUTDIR)/demoobjs/jvmti/$1/$1.exp $$@

         BUILD_DEMOS += $(JDK_OUTPUTDIR)/demo/jvmti/$1/lib/$1.lib \
			$(JDK_OUTPUTDIR)/demo/jvmti/$1/lib/$1.exp
     endif
301 302 303 304 305 306 307
endef

$(eval $(call SetupJVMTIDemo,compiledMethodLoad,	agent_util))
$(eval $(call SetupJVMTIDemo,gctest,			agent_util))
$(eval $(call SetupJVMTIDemo,heapTracker,		agent_util java_crw_demo))
$(eval $(call SetupJVMTIDemo,heapViewer,		agent_util))
$(eval $(call SetupJVMTIDemo,hprof,			java_crw_demo,\
308 309
		-I$(JDK_TOPDIR)/src/share/npt -I$(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/npt,C,\
		-ldl,ws2_32.lib winmm.lib,-lsocket -lnsl,-lpthread))
310 311 312 313 314 315 316 317 318 319 320 321 322 323

$(eval $(call SetupJVMTIDemo,minst,			agent_util java_crw_demo))
$(eval $(call SetupJVMTIDemo,mtrace,			agent_util java_crw_demo))
$(eval $(call SetupJVMTIDemo,waiters,			agent_util,,C++))
$(eval $(call SetupJVMTIDemo,versionCheck,		agent_util))

##################################################################################################

# The jpda demo (com/sun/tools/example) is oddly enough stored in src/share/classes.
# At least, we do not need to compile the jpda demo, just jar/zip up the sources.
JPDA_SOURCES:=$(shell $(FIND) $(JDK_TOPDIR)/src/share/classes/com/sun/tools/example -type f)
# The number of files are few enough so that we can use echo safely below to list them.
JPDA_FILES:=$(subst $(JDK_TOPDIR)/src/share/classes/,,$(JPDA_SOURCES))

324
$(JDK_OUTPUTDIR)/demo/jpda/src.zip : $(JPDA_SOURCES)
325
		$(MKDIR) -p $(@D)
326 327
		(cd $(JDK_TOPDIR)/src/share/classes && $(ZIP) -qru $@ com -i "com/sun/tools/example/*")

328
$(JDK_OUTPUTDIR)/demo/jpda/examples.jar : $(JPDA_SOURCES)
329
		$(MKDIR) -p $(@D)
330 331 332 333 334 335 336 337
		$(RM) $(@D)/_the.sources
		$(call ListPathsSafely,JPDA_FILES,\n, >> $(@D)/_the.sources)
		$(SED) -e "s#@@RELEASE@@#$(RELEASE)#" 		\
		       -e "s#@@COMPANY_NAME@@#$(COMPANY_NAME)#" $(JDK_TOPDIR)/make/tools/manifest.mf > $(@D)/_the.manifest
		$(ECHO) "Main-Class: " >> $(@D)/_the.manifest
		(cd $(JDK_TOPDIR)/src/share/classes && $(JAR) cfm  $@ $(@D)/_the.manifest @$(@D)/_the.sources)
		(cd $(JDK_TOPDIR)/src/share/classes/com/sun/tools/example && $(JAR) uf $@ README)

338
$(JDK_OUTPUTDIR)/demo/jpda/com/sun/tools/example/README : $(JDK_TOPDIR)/src/share/classes/com/sun/tools/example/README
339
		$(MKDIR) -p $(@D)
340 341 342
		$(CP) $< $@
		$(CHMOD) -f ug+w $@

343 344
BUILD_DEMOS += $(JDK_OUTPUTDIR)/demo/jpda/src.zip $(JDK_OUTPUTDIR)/demo/jpda/examples.jar \
		$(JDK_OUTPUTDIR)/demo/jpda/com/sun/tools/example/README
345 346 347

##################################################################################################

348
$(JDK_OUTPUTDIR)/demo/management/index.html : $(JDK_TOPDIR)/src/share/demo/management/index.html
349
		$(MKDIR) -p $(@D)
350 351 352
		$(CP) $< $@
		$(CHMOD) -f ug+w $@

353
$(JDK_OUTPUTDIR)/demo/jvmti/index.html : $(JDK_TOPDIR)/src/share/demo/jvmti/index.html
354
		$(MKDIR) -p $(@D)
355 356 357
		$(CP) $< $@
		$(CHMOD) -f ug+w $@

358 359
BUILD_DEMOS += $(JDK_OUTPUTDIR)/demo/management/index.html \
		$(JDK_OUTPUTDIR)/demo/jvmti/index.html
360 361 362 363

##################################################################################################

# The netbeans project files are copied into the demo directory.
364
BUILD_DEMOS += $(patsubst $(JDK_TOPDIR)/src/share/demo/nbproject/%,\
365
		$(JDK_OUTPUTDIR)/demo/nbproject/%,\
366 367
		$(shell $(FIND) $(JDK_TOPDIR)/src/share/demo/nbproject/ -type f))

368
$(JDK_OUTPUTDIR)/demo/nbproject/% : $(JDK_TOPDIR)/src/share/demo/nbproject/%
369 370 371 372 373 374
	$(MKDIR) -p $(@D)
	$(CP) $< $@
	$(CHMOD) -f ug+w $@

##################################################################################################

375
$(JDK_OUTPUTDIR)/demo/README: $(JDK_TOPDIR)/src/share/demo/README
376 377 378
	$(MKDIR) -p $(@D)
	$(CP) $< $@

379
BUILD_DEMOS += $(JDK_OUTPUTDIR)/demo/README
380 381 382

##################################################################################################

383
ifeq ($(OPENJDK_TARGET_OS), solaris)
384

385
$(JDK_OUTPUTDIR)/democlasses/jni/Poller/% : $(JDK_TOPDIR)/src/solaris/demo/jni/Poller/%
386 387 388 389
		$(MKDIR) -p $(@D)
		$(CP) $< $@
		$(CHMOD) -f ug+w $@

390
$(JDK_OUTPUTDIR)/demo/jni/Poller/README.txt : $(JDK_TOPDIR)/src/solaris/demo/jni/Poller/README.txt
391 392 393 394
		$(MKDIR) -p $(@D)
		$(CP) $< $@
		$(CHMOD) -f ug+w $@

395 396
$(JDK_OUTPUTDIR)/demo/jni/Poller/Poller.jar : \
  $(JDK_OUTPUTDIR)/democlasses/jni/Poller/README.txt $(JDK_OUTPUTDIR)/democlasses/jni/Poller/Poller.c
397 398 399 400

$(eval $(call SetupJavaCompilation,BUILD_DEMO_POLLER_JAR,\
		SETUP:=GENERATE_USINGJDKBYTECODE, \
		SRC:=$(JDK_TOPDIR)/src/solaris/demo/jni/Poller, \
401 402 403
		BIN:=$(JDK_OUTPUTDIR)/democlasses/jni/Poller, \
		HEADERS:=$(JDK_OUTPUTDIR)/democlasses/jni/Poller, \
		JAR:=$(JDK_OUTPUTDIR)/demo/jni/Poller/Poller.jar, \
404
		MANIFEST:=$(JDK_TOPDIR)/make/tools/manifest.mf, \
405 406 407
		SRCZIP:=$(JDK_OUTPUTDIR)/demo/jni/Poller/src.zip, \
		COPY:=README.txt Poller.c, \
		JARMAIN:=Client))
408

409 410


411 412
BUILD_DEMOS += $(JDK_OUTPUTDIR)/demo/jni/Poller/Poller.jar $(JDK_OUTPUTDIR)/demo/jni/Poller/src.zip \
               $(JDK_OUTPUTDIR)/demo/jni/Poller/README.txt
413 414 415

$(eval $(call SetupNativeCompilation,BUILD_LIBPOLLER,\
		SRC:=$(JDK_TOPDIR)/src/solaris/demo/jni/Poller, \
416 417 418 419
		LANG:=C,\
		OPTIMIZATION:=LOW,\
		CFLAGS:=$(CFLAGS_JDKLIB) $(SHARED_LIBRARY_FLAGS) \
                        -I$(JDK_OUTPUTDIR)/democlasses/jni/Poller, \
420
		LDFLAGS:=$(LDFLAGS_JDKLIB), \
421 422
		OBJECT_DIR:=$(JDK_OUTPUTDIR)/demoobjs/jni/Poller,\
                OUTPUT_DIR:=$(JDK_OUTPUTDIR)/demoobjs, \
423
		LIBRARY:=Poller))
424 425 426 427

#
# We can only compile native code after jar has been build (since we depend on generated .h files)
#
428
$(JDK_OUTPUTDIR)/demoobjs/jni/Poller/Poller.o : $(JDK_OUTPUTDIR)/demo/jni/Poller/Poller.jar
429

430 431
$(JDK_OUTPUTDIR)/demo/jni/Poller/lib/$(LIBRARY_PREFIX)Poller$(SHARED_LIBRARY_SUFFIX) : \
  $(JDK_OUTPUTDIR)/demoobjs/$(LIBRARY_PREFIX)Poller$(SHARED_LIBRARY_SUFFIX)
432 433 434
	$(MKDIR) -p $(@D)
	$(CP) $< $@

435
BUILD_DEMOS += $(JDK_OUTPUTDIR)/demo/jni/Poller/lib/$(LIBRARY_PREFIX)Poller$(SHARED_LIBRARY_SUFFIX)
436 437

endif
438 439 440

##################################################################################################

441 442 443
ifndef OPENJDK
    DB_DEMO_ZIPFILE := $(shell $(FIND) $(JDK_TOPDIR)/src/closed/share/db -name "*demo*.zip")

444
    $(JDK_OUTPUTDIR)/demo/_the.db.unzipped: $(DB_DEMO_ZIPFILE)
445
	$(MKDIR) -p $(@D)
446
	$(RM) -r $(JDK_OUTPUTDIR)/demo/db $(JDK_OUTPUTDIR)/demo/demo
O
ohair 已提交
447
	$(CD) $(JDK_OUTPUTDIR)/demo && $(UNZIP) -q -o $<
448
	$(MV) $(JDK_OUTPUTDIR)/demo/demo $(JDK_OUTPUTDIR)/demo/db
449 450 451
	$(TOUCH) $@

#    Copy this after the unzip above to avoid race with directory creation and mv command.
452
     $(JDK_OUTPUTDIR)/demo/db/README-JDK-DEMOS.html: \
453
		$(JDK_TOPDIR)/src/closed/share/db/README-JDK-DEMOS.html \
454
		| $(JDK_OUTPUTDIR)/demo/_the.db.unzipped
455 456
	$(MKDIR) -p $(@D)
	$(CP) '$<' '$@'
457
     BUILD_DEMOS += $(JDK_OUTPUTDIR)/demo/_the.db.unzipped $(JDK_OUTPUTDIR)/demo/db/README-JDK-DEMOS.html
458
endif
459 460 461

##################################################################################################

462
all: $(BUILD_DEMOS)
463 464

.PHONY: all