jdk/makefiles/java/fdlibm/Makefile
changeset 12892 3ef14bab6254
parent 12891 5dbaa8f0f72e
child 12893 483a74a0b295
equal deleted inserted replaced
12891:5dbaa8f0f72e 12892:3ef14bab6254
     1 #
       
     2 # Copyright (c) 1998, 2012, Oracle and/or its affiliates. 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.  Oracle designates this
       
     8 # particular file as subject to the "Classpath" exception as provided
       
     9 # by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22 # or visit www.oracle.com if you need additional information or have any
       
    23 # questions.
       
    24 #
       
    25 
       
    26 #
       
    27 # Makefile for fdlibm
       
    28 #
       
    29 # Note:
       
    30 # The fdlibm libraries are built using special rules in Library.gmk.
       
    31 #
       
    32 
       
    33 BUILDDIR     = ../..
       
    34 LIBRARY      = fdlibm
       
    35 PRODUCT      = java
       
    36 
       
    37 include $(BUILDDIR)/common/Defs.gmk
       
    38 
       
    39 #
       
    40 # Where is fdlibm in the source tree?
       
    41 #
       
    42 FDLIBM_SRC = $(SHARE_SRC)/native/java/lang/fdlibm
       
    43 
       
    44 # Windows: compiler flags
       
    45 ifeq ($(PLATFORM),windows)
       
    46   # Turn all optimizations off
       
    47   OPTIMIZATION_LEVEL = NONE
       
    48   FASTDEBUG_OPTIMIZATION_LEVEL = NONE
       
    49   OTHER_CFLAGS =
       
    50   CPPFLAGS_DBG += -DLOGGING
       
    51 endif
       
    52 
       
    53 #
       
    54 # Linux: Disable optimization to get correctly reproducible
       
    55 # floating-point results.
       
    56 #
       
    57 ifeq ($(PLATFORM),linux)
       
    58   # Turn all optimizations off
       
    59   OPTIMIZATION_LEVEL = NONE
       
    60   FASTDEBUG_OPTIMIZATION_LEVEL = NONE
       
    61 endif
       
    62 
       
    63 ifeq ($(PLATFORM),macosx)
       
    64   # Turn all optimizations off
       
    65   OPTIMIZATION_LEVEL = NONE
       
    66   FASTDEBUG_OPTIMIZATION_LEVEL = NONE
       
    67 endif
       
    68 
       
    69 #
       
    70 # Include path.
       
    71 #
       
    72 OTHER_INCLUDES = -I$(FDLIBM_SRC)/include
       
    73 
       
    74 #
       
    75 # Things that must be linked in.
       
    76 #
       
    77 OTHER_LDLIBS =
       
    78 
       
    79 #
       
    80 # Files to compile.
       
    81 #
       
    82 include FILES_c.gmk
       
    83 
       
    84 #
       
    85 # Rules for the .a file.
       
    86 #
       
    87 include $(BUILDDIR)/common/Library.gmk
       
    88 
       
    89 #
       
    90 # Find fdlibm source files.
       
    91 #
       
    92 vpath %.c
       
    93 vpath %.c $(FDLIBM_SRC)/src