Changeset 144
- Timestamp:
- Sep 4, 2010, 1:44:54 AM (15 years ago)
- Location:
- trunk/openjdk/jdk/make
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/make/Makefile
r27 r144 260 260 all build:: sanity-all post-sanity-all 261 261 262 ifndef OS2_TEMP 262 263 SUBDIRS = tools java javax org sun sunw com jpda mkdemo mksample launchers 264 else 265 SUBDIRS = tools java org sun sunw com launchers 266 endif 263 267 all build:: 264 268 $(SUBDIRS-loop) -
trunk/openjdk/jdk/make/com/sun/Makefile
r2 r144 40 40 41 41 # Omit mirror since it's built with the apt tool. 42 ifndef OS2_TEMP # security 42 43 SUBDIRS = $(SCRIPT_SUBDIR) image security crypto/provider jndi jmx \ 43 44 java inputmethods org rowset net/httpserver net/ssl demo \ 44 45 tools jarsigner 46 else 47 SUBDIRS = $(SCRIPT_SUBDIR) jndi jmx \ 48 java org rowset net/httpserver demo \ 49 jarsigner 50 endif 45 51 46 52 all build clean clobber:: -
trunk/openjdk/jdk/make/common/Release.gmk
r69 r144 337 337 # 338 338 TOOLS = \ 339 340 ifndef OS2_TEMP # security 341 TOOLS += \ 339 342 META-INF/services/com.sun.jdi.connect.Connector \ 340 343 META-INF/services/com.sun.jdi.connect.spi.TransportService \ 344 345 endif 346 TOOLS += \ 341 347 sun/tools/asm \ 342 348 sun/tools/jar \ … … 351 357 sun/tools/tree \ 352 358 sun/tools/util \ 359 360 ifndef OS2_TEMP # security 361 TOOLS += \ 353 362 sun/security/tools/JarBASE64Encoder.class \ 354 363 sun/security/tools/JarSigner.class \ … … 360 369 sun/security/tools/SignatureFile.class \ 361 370 sun/security/tools/TimestampedSigner.class \ 371 372 endif 373 TOOLS += \ 362 374 sun/rmi/rmic \ 363 375 sun/applet \ 364 376 sun/jvmstat \ 365 377 com/sun/javadoc \ 378 379 ifndef OS2_TEMP # JPDA 380 TOOLS += \ 366 381 com/sun/jdi \ 382 383 endif 384 TOOLS += \ 367 385 com/sun/jarsigner \ 368 386 com/sun/mirror \ 369 387 com/sun/source \ 370 388 com/sun/tools/doclets \ 389 390 ifndef OS2_TEMP # JPDA 391 TOOLS += \ 371 392 com/sun/tools/example/debug/expr \ 372 393 com/sun/tools/example/debug/tty \ 373 394 com/sun/tools/extcheck \ 395 396 endif 397 TOOLS += \ 374 398 com/sun/tools/hat \ 375 399 com/sun/tools/javac \ … … 390 414 org/relaxng/datatype \ 391 415 com/sun/xml/internal/dtdparser \ 416 417 ifndef OS2_TEMP # JPDA 418 TOOLS += \ 392 419 com/sun/tools/jdi \ 420 421 endif 422 TOOLS += \ 393 423 com/sun/tools/script/shell \ 424 425 ifndef OS2_TEMP # com.sun.tools.attach 426 TOOLS += \ 394 427 META-INF/services/com.sun.tools.attach.spi.AttachProvider \ 395 428 com/sun/tools/attach \ 396 429 sun/tools/attach \ 430 431 endif 432 TOOLS += \ 397 433 sun/tools/jstack \ 398 434 sun/tools/jinfo \ … … 660 696 @$(java-vm-cleanup) 661 697 698 ifndef OS2_TEMP # security 662 699 # Create jsse.jar containing SunJSSE implementation classes 663 700 JSSE_JAR=$(TEMPDIR)/jsse-orig.jar … … 668 705 $(JAR_JFLAGS) 669 706 @$(java-vm-cleanup) 707 endif 670 708 671 709 # Create sec-bin.zip … … 776 814 $(CP) $(RT_JAR) $(JRE_IMAGE_DIR)/lib/rt.jar 777 815 $(CP) $(RESOURCES_JAR) $(JRE_IMAGE_DIR)/lib/resources.jar 816 ifndef OS2_TEMP # security 778 817 $(CP) $(JSSE_JAR) $(JRE_IMAGE_DIR)/lib/jsse.jar 818 endif 779 819 @# Generate meta-index to make boot and extension class loaders lazier 780 820 $(CD) $(JRE_IMAGE_DIR)/lib && \ … … 911 951 @# 912 952 $(CP) $(LIBDIR)/$(LIB_PREFIX)jvm.$(LIB_SUFFIX) $(JDK_IMAGE_DIR)/lib 953 ifndef OS2_TEMP 913 954 $(CP) $(LIBDIR)/$(LIB_PREFIX)jawt.$(LIB_SUFFIX) $(JDK_IMAGE_DIR)/lib 955 endif 914 956 @# 915 957 @# bin/ … … 980 1022 @# So for Linux, make use of the -T option (like Solaris' -I option) of 981 1023 @# obtaining the list of files from a file. MKS tar has no such option. 982 ifeq ($( PLATFORM), linux)1024 ifeq ($(filter-out linux os2, $(PLATFORM)),) 983 1025 for d in $(SOURCE_DIRS); do \ 984 1026 $(RM) $(ABS_TEMPDIR)/src-files.list; \ … … 1037 1079 @# demo, include 1038 1080 @# 1081 ifndef OS2_TEMP 1039 1082 $(CP) -r -f $(DEMODIR) $(JDK_IMAGE_DIR) 1040 1083 $(CP) -r -f $(SAMPLEDIR) $(JDK_IMAGE_DIR) … … 1044 1087 @# 1045 1088 $(CD) javax/swing/beaninfo && $(MAKE) swing-1.2-beans 1089 endif 1046 1090 ifneq ($(filter-out windows os2, $(PLATFORM)),) 1047 1091 $(call copy-man-pages,$(JDK_IMAGE_DIR),$(JDK_MAN_PAGES)) -
trunk/openjdk/jdk/make/sun/Makefile
r74 r144 62 62 RENDER_SUBDIR = dcpr 63 63 endif 64 ifndef OS2_TEMP # security, GUI stuff 64 65 SUBDIRS = jar security javazic misc net audio $(RENDER_SUBDIR) image \ 65 66 awt splashscreen $(XAWT_SUBDIR) $(MOTIF_SUBDIRS) \ … … 68 69 jawt text nio launcher management $(ORG_SUBDIR) \ 69 70 native2ascii serialver tools jconsole 71 else 72 SUBDIRS = jar javazic misc net \ 73 rmi beans $(JDBC_SUBDIR) \ 74 text nio launcher management $(ORG_SUBDIR) \ 75 native2ascii serialver tools jconsole 76 endif 70 77 71 78 all build clean clobber:: -
trunk/openjdk/jdk/make/sun/net/FILES_java.gmk
r74 r144 88 88 sun/net/www/protocol/http/NegotiatorImpl.java \ 89 89 sun/net/www/protocol/http/NegotiateCallbackHandler.java \ 90 91 ifndef OS2_TEMP # security 92 FILES_java += \ 90 93 sun/net/www/protocol/https/AbstractDelegateHttpsURLConnection.java \ 91 94 sun/net/www/protocol/https/HttpsClient.java \ … … 94 97 sun/net/www/protocol/https/DelegateHttpsURLConnection.java \ 95 98 sun/net/www/protocol/https/Handler.java \ 99 100 endif 101 FILES_java += \ 96 102 sun/net/www/protocol/jar/Handler.java \ 97 103 sun/net/www/protocol/jar/URLJarFile.java \
Note:
See TracChangeset
for help on using the changeset viewer.