Ignore:
Timestamp:
Jul 21, 2010, 9:16:25 PM (15 years ago)
Author:
dmik
Message:

jdk/make: Adopted a huge bunch of makefiles to OS/2 (will be tested as they get used).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/jdk/make/javax/swing/plaf/Makefile

    r2 r74  
    3939AUTO_FILES_JAVA_DIRS = javax/swing/plaf sun/swing com/sun/java/swing/plaf
    4040
    41 ifeq ($(PLATFORM), windows)
    42     # Don't build GTK L&F on Windows
     41ifeq ($(filter-out windows os2, $(PLATFORM)),)
     42    # Don't build GTK L&F on Windows or OS/2
    4343    AUTO_JAVA_PRUNE = gtk
    4444endif
     
    4949
    5050MISC_FILES = $(MISC_SWING_FILES)
    51 ifneq ($(PLATFORM), windows)
     51ifneq ($(filter-out windows os2, $(PLATFORM)),)
    5252    # Only include GTK icons on Solaris/Linux
    5353    MISC_FILES += $(MISC_SWING_FILES_UNIX)
     
    7070        com/sun/java/swing/plaf/motif/resources/motif.properties \
    7171        com/sun/java/swing/plaf/windows/resources/windows.properties
    72 ifneq ($(PLATFORM), windows)
     72ifneq ($(filter-out windows os2, $(PLATFORM)),)
    7373    # Only compile GTK resource bundles on Solaris/Linux
    7474    RESOURCE_BUNDLES_COMPILED_PROPERTIES += \
Note: See TracChangeset for help on using the changeset viewer.