1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 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 2008 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26 27LIBRARY = libsocket.a 28VERS = .1 29 30INETOBJS = bindresvport.o bootparams_getbyname.o ether_addr.o \ 31 getaddrinfo.o getnameinfo.o getnetent.o getnetent_r.o \ 32 getprotoent.o getprotoent_r.o getservbyname_r.o getservent.o \ 33 getservent_r.o inet_lnaof.o inet_mkaddr.o inet_network.o \ 34 inet6_opt.o inet6_rthdr.o interface_id.o link_addr.o \ 35 netmasks.o rcmd.o rexec.o ruserpass.o sourcefilter.o 36SOCKOBJS = _soutil.o sockatmark.o socket.o socketpair.o weaks.o 37OBJECTS = $(INETOBJS) $(SOCKOBJS) 38 39include ../../Makefile.lib 40 41# install this library in the root filesystem 42include ../../Makefile.rootfs 43 44LIBS = $(DYNLIB) $(LINTLIB) 45 46SRCS = $(INETOBJS:%.o=../inet/%.c) $(SOCKOBJS:%.o=../socket/%.c) 47LDLIBS += -lnsl -lc 48 49SRCDIR = ../common 50$(LINTLIB):= SRCS = $(SRCDIR)/$(LINTSRC) 51 52MAPFILES += mapfile-vers 53 54# Make string literals read-only to save memory. 55CFLAGS += $(XSTRCONST) 56CFLAGS64 += $(XSTRCONST) 57 58CPPFLAGS += -DSYSV -D_REENTRANT -I../../common/inc 59%/rcmd.o := CPPFLAGS += -DNIS 60 61.KEEP_STATE: 62 63all: 64 65lint: lintcheck 66 67# libsocket build rules 68pics/%.o: ../inet/%.c 69 $(COMPILE.c) -o $@ $< 70 $(POST_PROCESS_O) 71 72pics/%.o: ../socket/%.c 73 $(COMPILE.c) -o $@ $< 74 $(POST_PROCESS_O) 75 76include ../../Makefile.targ 77