author | chegar |
Sat, 04 Feb 2012 07:29:11 +0000 | |
changeset 11823 | ee83ae88512d |
parent 10137 | d92637d3d673 |
child 14342 | 8435a30053c1 |
permissions | -rw-r--r-- |
2542 | 1 |
# |
9035
1255eb81cc2f
7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents:
8583
diff
changeset
|
2 |
# Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved. |
2542 | 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 |
|
5506 | 7 |
# published by the Free Software Foundation. Oracle designates this |
2542 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
2542 | 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 |
# |
|
5506 | 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. |
|
2542 | 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 |
include $(BUILDDIR)/common/Defs.gmk |
|
35 |
||
36 |
# |
|
37 |
# Files to compile |
|
38 |
# |
|
39 |
include FILES_c.gmk |
|
40 |
include FILES_java.gmk |
|
41 |
include Exportedfiles.gmk |
|
42 |
||
43 |
ifneq ($(PLATFORM), windows) |
|
44 |
include $(BUILDDIR)/common/Mapfile-vers.gmk |
|
45 |
include $(BUILDDIR)/common/Library.gmk |
|
46 |
||
47 |
# |
|
48 |
# Find platform-specific C source files |
|
49 |
# |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
10137
diff
changeset
|
50 |
vpath %.c $(PLATFORM_SRC)/native/sun/nio/ch/sctp |
2542 | 51 |
|
52 |
# |
|
53 |
# Include nio.h, net_util.h, sun_nio_ch_IOStatus.h, etc |
|
54 |
# |
|
55 |
OTHER_INCLUDES += \ |
|
56 |
-I$(SHARE_SRC)/native/sun/nio/ch \ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
10137
diff
changeset
|
57 |
-I$(SHARE_SRC)/native/sun/nio/ch/sctp \ |
2542 | 58 |
-I$(SHARE_SRC)/native/java/net \ |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
10137
diff
changeset
|
59 |
-I$(PLATFORM_SRC)/native/sun/nio/ch \ |
2542 | 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 |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
10137
diff
changeset
|
80 |
$(RM) -r $(CLASSDESTDIR)/sun/nio/ch/sctp |
2542 | 81 |