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