Print this page
9704 move socket functions to libc


   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 
  22 #
  23 # Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
  24 #
  25 
  26 LIBRARY =       libsocket.a
  27 VERS =          .1
  28 
  29 INETOBJS =      bindresvport.o bootparams_getbyname.o ether_addr.o \
  30                 getaddrinfo.o getnameinfo.o getnetent.o getnetent_r.o \
  31                 getprotoent.o getprotoent_r.o getservbyname_r.o getservent.o \
  32                 getservent_r.o inet6_opt.o inet6_rthdr.o interface_id.o \
  33                 link_addr.o netmasks.o rcmd.o rexec.o ruserpass.o \
  34                 sourcefilter.o getifaddrs.o
  35 SOCKOBJS =      _soutil.o sockatmark.o socket.o socketpair.o weaks.o
  36 OBJECTS =       $(INETOBJS) $(SOCKOBJS)
  37 
  38 include ../../Makefile.lib
  39 
  40 # install this library in the root filesystem
  41 include ../../Makefile.rootfs
  42 
  43 LIBS =          $(DYNLIB) $(LINTLIB)
  44 
  45 SRCS =          $(INETOBJS:%.o=../inet/%.c) $(SOCKOBJS:%.o=../socket/%.c)
  46 LDLIBS +=       -lnsl -lc
  47 
  48 SRCDIR =        ../common
  49 $(LINTLIB):=    SRCS = $(SRCDIR)/$(LINTSRC)
  50 
  51 # Make string literals read-only to save memory.
  52 CFLAGS +=       $(XSTRCONST)
  53 CFLAGS64 +=     $(XSTRCONST)
  54 
  55 CPPFLAGS +=     -DSYSV -D_REENTRANT -I../../common/inc
  56 %/rcmd.o :=     CPPFLAGS += -DNIS
  57 
  58 CERRWARN +=     -_gcc=-Wno-type-limits
  59 CERRWARN +=     -_gcc=-Wno-uninitialized
  60 CERRWARN +=     -_gcc=-Wno-unused-variable
  61 CERRWARN +=     -_gcc=-Wno-parentheses
  62 
  63 .KEEP_STATE:
  64 
  65 all:


   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 
  22 #
  23 # Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
  24 #
  25 
  26 LIBRARY =       libsocket.a
  27 VERS =          .1
  28 
  29 OBJECTS =       bindresvport.o bootparams_getbyname.o ether_addr.o \
  30                 getaddrinfo.o getnameinfo.o getnetent.o getnetent_r.o \
  31                 getprotoent.o getprotoent_r.o getservbyname_r.o getservent.o \
  32                 getservent_r.o inet6_opt.o inet6_rthdr.o interface_id.o \
  33                 link_addr.o netmasks.o rcmd.o rexec.o ruserpass.o \
  34                 sourcefilter.o getifaddrs.o


  35 
  36 include ../../Makefile.lib
  37 
  38 # install this library in the root filesystem
  39 include ../../Makefile.rootfs
  40 
  41 LIBS =          $(DYNLIB) $(LINTLIB)
  42 
  43 SRCS =          $(OBJECTS:%.o=../inet/%.c)
  44 LDLIBS +=       -lnsl -lc
  45 
  46 SRCDIR =        ../common
  47 $(LINTLIB):=    SRCS = $(SRCDIR)/$(LINTSRC)
  48 
  49 # Make string literals read-only to save memory.
  50 CFLAGS +=       $(XSTRCONST)
  51 CFLAGS64 +=     $(XSTRCONST)
  52 
  53 CPPFLAGS +=     -DSYSV -D_REENTRANT -I../../common/inc
  54 %/rcmd.o :=     CPPFLAGS += -DNIS
  55 
  56 CERRWARN +=     -_gcc=-Wno-type-limits
  57 CERRWARN +=     -_gcc=-Wno-uninitialized
  58 CERRWARN +=     -_gcc=-Wno-unused-variable
  59 CERRWARN +=     -_gcc=-Wno-parentheses
  60 
  61 .KEEP_STATE:
  62 
  63 all: