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).

Location:
trunk/openjdk/jdk/make/sun/font
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/jdk/make/sun/font/FILES_c.gmk

    r2 r74  
    113113
    114114
    115 ifeq ($(PLATFORM),windows)
     115ifeq ($(filter-out windows os2,$(PLATFORM)),)
    116116FILES_c_platform = fontpath.c
    117117FILES_cpp_platform = D3DTextRenderer.cpp
  • trunk/openjdk/jdk/make/sun/font/Makefile

    r2 r74  
    7575    sun/java2d/loops/GraphicsPrimitive.java
    7676
    77 ifeq ($(PLATFORM), windows)
     77ifeq ($(filter-out windows os2, $(PLATFORM)),)
    7878
    7979  # Files built here do not compile with warning level 3 if warnings are fatal
     
    131131
    132132$(LIB_LOCATION)/$(LIB_PREFIX)freetype.$(LIBRARY_SUFFIX):
    133 ifeq ($(PLATFORM), windows)
     133ifeq ($(filter-out windows os2, $(PLATFORM)),)
    134134        $(CP) $(FREETYPE_LIB_PATH)/$(LIB_PREFIX)freetype.$(LIBRARY_SUFFIX) $@
    135135else
     
    169169endif
    170170
    171 ifeq ($(PLATFORM), windows)
     171ifeq ($(filter-out windows os2, $(PLATFORM)),)
    172172vpath %.cpp   $(PLATFORM_SRC)/native/sun/windows
    173173vpath %.cpp   $(PLATFORM_SRC)/native/sun/java2d/d3d
     
    205205            -I$(TEMPDIR)/../../sun.awt/awt/CClassHeaders
    206206
    207 ifeq ($(PLATFORM), windows)
     207ifeq ($(filter-out windows os2, $(PLATFORM)),)
    208208CPPFLAGS += -I$(PLATFORM_SRC)/native/sun/windows \
    209209            -I$(PLATFORM_SRC)/native/sun/java2d/d3d
  • trunk/openjdk/jdk/make/sun/font/t2k/Makefile

    r2 r74  
    6363    sun/font/T2KFontScaler.java
    6464
    65 ifeq ($(PLATFORM), windows)
     65ifeq ($(filter-out windows os2, $(PLATFORM)),)
    6666
    6767  # Files built here do not compile with warning level 3 if warnings are fatal
     
    9999#
    100100# setup the list of libraries to link in...
    101 ifneq ($(PLATFORM), windows)
     101ifneq ($(filter-out windows os2, $(PLATFORM)),)
    102102  OTHER_LDLIBS  +=  $(LIBM) $(LIBCXX) -lfontmanager
    103103  ifeq ($(PLATFORM), linux)
Note: See TracChangeset for help on using the changeset viewer.