jdk/make/com/sun/nio/sctp/Makefile
changeset 2542 d859108aea12
child 4665 d14dc3d9e1fa
equal deleted inserted replaced
2418:15096652c4d4 2542:d859108aea12
       
     1 #
       
     2 # Copyright 2009 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 com.sun.nio.sctp
       
    28 #
       
    29 
       
    30 BUILDDIR = ../../../..
       
    31 PACKAGE = com.sun.nio.sctp
       
    32 LIBRARY = sctp
       
    33 PRODUCT = sun
       
    34 #OTHER_JAVACFLAGS += -Xmaxwarns 1000 -Xlint
       
    35 include $(BUILDDIR)/common/Defs.gmk
       
    36 
       
    37 #
       
    38 # Files to compile
       
    39 #
       
    40 include FILES_c.gmk
       
    41 include FILES_java.gmk
       
    42 include Exportedfiles.gmk
       
    43 
       
    44 ifneq ($(PLATFORM), windows)
       
    45 include $(BUILDDIR)/common/Mapfile-vers.gmk
       
    46 include $(BUILDDIR)/common/Library.gmk
       
    47 
       
    48 #
       
    49 # Find platform-specific C source files
       
    50 #
       
    51 vpath %.c $(PLATFORM_SRC)/native/sun/nio/ch
       
    52 
       
    53 #
       
    54 # Include nio.h, net_util.h, sun_nio_ch_IOStatus.h, etc
       
    55 #
       
    56 OTHER_INCLUDES += \
       
    57   -I$(SHARE_SRC)/native/sun/nio/ch \
       
    58   -I$(SHARE_SRC)/native/java/net \
       
    59   -I$(PLATFORM_SRC)/native/java/net \
       
    60   -I$(CLASSHDRDIR)/../../../../java/java.nio/nio/CClassHeaders
       
    61 
       
    62 ifeq ($(PLATFORM), linux)
       
    63 COMPILER_WARNINGS_FATAL=true
       
    64 #OTHER_LDLIBS += -L$(LIBDIR)/$(LIBARCH) -ljava -lnet -lpthread -ldl
       
    65 OTHER_LDLIBS += -L$(LIBDIR)/$(LIBARCH) -lnio -lnet -lpthread -ldl
       
    66 endif
       
    67 ifeq ($(PLATFORM), solaris)
       
    68 #LIBSCTP = -lsctp
       
    69 OTHER_LDLIBS += $(LIBSOCKET) -L$(LIBDIR)/$(LIBARCH) -lnet -lnio
       
    70 endif # PLATFORM
       
    71 
       
    72 else # windows
       
    73 include $(BUILDDIR)/common/Classes.gmk
       
    74 endif # ifneq windows
       
    75 
       
    76 
       
    77 clean clobber::
       
    78 	$(RM) -r $(CLASSDESTDIR)/com/sun/nio/sctp
       
    79 	$(RM) -r $(CLASSDESTDIR)/sun/nio/ch
       
    80