Changeset 249 for trunk/openjdk/jdk/make
- Timestamp:
- Jan 27, 2011, 6:22:28 PM (15 years ago)
- Location:
- trunk/openjdk/jdk/make
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/make/Makefile
r232 r249 260 260 all build:: sanity-all post-sanity-all 261 261 262 ifndef OS2_TEMP263 262 SUBDIRS = tools java javax org sun sunw com jpda mkdemo mksample launchers 264 else # disable JPDA265 SUBDIRS = tools java javax org sun sunw com mkdemo mksample launchers266 endif267 263 all build:: 268 264 $(SUBDIRS-loop) -
trunk/openjdk/jdk/make/common/Release.gmk
r238 r249 338 338 TOOLS = \ 339 339 340 ifndef OS2_TEMP # JPDA341 340 TOOLS += \ 342 341 META-INF/services/com.sun.jdi.connect.Connector \ 343 342 META-INF/services/com.sun.jdi.connect.spi.TransportService \ 344 345 endif346 TOOLS += \347 343 sun/tools/asm \ 348 344 sun/tools/jar \ … … 370 366 sun/jvmstat \ 371 367 com/sun/javadoc \ 372 373 ifndef OS2_TEMP # JPDA374 TOOLS += \375 368 com/sun/jdi \ 376 377 endif378 TOOLS += \379 369 com/sun/jarsigner \ 380 370 com/sun/mirror \ 381 371 com/sun/source \ 382 372 com/sun/tools/doclets \ 383 384 ifndef OS2_TEMP # JPDA385 TOOLS += \386 373 com/sun/tools/example/debug/expr \ 387 374 com/sun/tools/example/debug/tty \ 388 375 com/sun/tools/extcheck \ 389 390 endif391 TOOLS += \392 376 com/sun/tools/hat \ 393 377 com/sun/tools/javac \ … … 408 392 org/relaxng/datatype \ 409 393 com/sun/xml/internal/dtdparser \ 410 411 ifndef OS2_TEMP # JPDA412 TOOLS += \413 394 com/sun/tools/jdi \ 414 415 endif416 TOOLS += \417 395 com/sun/tools/script/shell \ 418 396 -
trunk/openjdk/jdk/make/jpda/transport/Makefile
r2 r249 33 33 34 34 SUBDIRS = socket 35 ifeq ($( PLATFORM), windows)35 ifeq ($(filter-out windows os2, $(PLATFORM)),) 36 36 SUBDIRS += shmem 37 37 endif # PLATFORM -
trunk/openjdk/jdk/make/jpda/transport/shmem/Makefile
r2 r249 82 82 # vpaths for the transport (should not be seen by others) 83 83 # 84 vpath %.c $(SHARE_SRC)/native/com/sun/tools/jdi :$(SHARE_SRC)/transport/shmem:$(PLATFORM_SRC)/transport/shmem84 vpath %.c $(SHARE_SRC)/native/com/sun/tools/jdi $(SHARE_SRC)/transport/shmem $(PLATFORM_SRC)/transport/shmem -
trunk/openjdk/jdk/make/jpda/transport/socket/Makefile
r2 r249 30 30 BUILDDIR = ../../.. 31 31 LIBRARY = dt_socket 32 LIBRARY_SHORT = dt_sock 32 33 PRODUCT = jbug 33 34 … … 54 55 endif 55 56 57 ifeq ($(PLATFORM), os2) 58 OTHER_LDLIBS += -lws2_32.lib 59 endif 60 56 61 OTHER_INCLUDES = -I$(INCLUDEDIR) -I$(PLATFORM_INCLUDE) \ 57 62 -I$(SHARE_SRC)/transport/export \ … … 73 78 endif 74 79 75 #76 # Rules.77 #78 include $(BUILDDIR)/common/Library.gmk79 80 80 # We don't want to link against -ljava 81 81 JAVALIB= … … 86 86 endif 87 87 88 ifeq ($(PLATFORM), os2) 89 90 FILES_c += socket_md_init.c 91 vpath %.c $(PLATFORM_SRC_OS2)/transport/socket 92 93 # exports live in .def file 94 DEF_FILE = $(OBJDIR)/$(LIBRARY).def 95 $(DEF_FILE): $(MAKEFILE_LIST) 96 @$(ECHO) "LIBRARY $(LIBRARY) INITINSTANCE TERMINSTANCE" > $@ 97 @$(ECHO) 'EXPORTS \n \ 98 jdwpTransport_OnLoad = "_jdwpTransport_OnLoad@16" \n \ 99 ' >> $@ 100 101 clean:: 102 -$(RM) $(DEF_FILE) 103 104 endif 105 106 # 107 # Rules. 108 # 109 include $(BUILDDIR)/common/Library.gmk 110 88 111 # 89 112 # Add to ambient vpath so we pick up the library files 90 113 # 91 vpath %.c $(SHARE_SRC)/transport/socket :$(PLATFORM_SRC)/transport/socket114 vpath %.c $(SHARE_SRC)/transport/socket $(PLATFORM_SRC)/transport/socket -
trunk/openjdk/jdk/make/mkdemo/Makefile
r232 r249 32 32 include $(BUILDDIR)/common/Defs.gmk 33 33 34 ifndef OS2_TEMP35 34 SUBDIRS = applets jfc jvmti management jni scripting jpda 36 else # disable JPDA37 SUBDIRS = applets jfc jvmti management jni scripting38 endif39 35 40 36 all build:: nbproject
Note:
See TracChangeset
for help on using the changeset viewer.