jdk/make/java/hpi/windows/Makefile
changeset 2 90ce3da70b43
child 849 be386e469547
equal deleted inserted replaced
0:fd16c54261b3 2:90ce3da70b43
       
     1 #
       
     2 # Copyright 1999-2005 Sun Microsystems, Inc.  All Rights Reserved.
       
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4 #
       
     5 # This code is free software; you can redistribute it and/or modify it
       
     6 # under the terms of the GNU General Public License version 2 only, as
       
     7 # published by the Free Software Foundation.  Sun designates this
       
     8 # particular file as subject to the "Classpath" exception as provided
       
     9 # by Sun in the LICENSE file that accompanied this code.
       
    10 #
       
    11 # This code is distributed in the hope that it will be useful, but WITHOUT
       
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14 # version 2 for more details (a copy is included in the LICENSE file that
       
    15 # accompanied this code).
       
    16 #
       
    17 # You should have received a copy of the GNU General Public License version
       
    18 # 2 along with this work; if not, write to the Free Software Foundation,
       
    19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20 #
       
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
       
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
       
    23 # have any questions.
       
    24 #
       
    25 
       
    26 #
       
    27 # Makefile for Windows HPI DLL
       
    28 #
       
    29 BUILDDIR = ../../..
       
    30 LIBRARY   = hpi
       
    31 PRODUCT      = java
       
    32 THREADDIR    = windows_threads
       
    33 LIB_LOCATION = $(BINDIR)
       
    34 
       
    35 include $(BUILDDIR)/common/Defs.gmk
       
    36 
       
    37 # windows compiler flags
       
    38 ifeq ($(PLATFORM),windows)
       
    39   CPPFLAGS_DBG += -DLOGGING
       
    40   # Files built here do not compile with warning level 3 if warnings are fatal
       
    41   COMPILER_WARNINGS_FATAL=false
       
    42 endif
       
    43 
       
    44 FILES_c = \
       
    45     linker_md.c \
       
    46     memory_md.c \
       
    47     monitor_md.c \
       
    48     path_md.c \
       
    49     socket_md.c \
       
    50     sys_api_md.c \
       
    51     system_md.c \
       
    52     threads_md.c \
       
    53     hpi.c # trailing blank required!
       
    54 
       
    55 JVMLIB = 
       
    56 JAVALIB =
       
    57 OTHER_LCF = -export:DLL_Initialize
       
    58 EXTRA_LIBS =
       
    59 
       
    60 
       
    61 #
       
    62 # Other files/flags shared between the HPIs.
       
    63 #
       
    64 include $(BUILDDIR)/java/hpi/hpi_common.gmk
       
    65 
       
    66 #
       
    67 # Rules for the .so file.
       
    68 #
       
    69 include $(BUILDDIR)/common/Library.gmk
       
    70