Print this page
9704 move socket functions to libc
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/libipmi/Makefile.com
+++ new/usr/src/lib/libipmi/Makefile.com
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21 #
22 22 # Copyright 2010 Sun Microsystems, Inc. All rights reserved.
23 23 # Use is subject to license terms.
24 24 #
25 25
26 26 LIBRARY= libipmi.a
27 27 VERS= .1
28 28
29 29 OBJECTS= ipmi_bmc.o \
30 30 ipmi_entity.o \
31 31 ipmi_event.o \
32 32 ipmi_fru.o \
33 33 ipmi_hash.o \
34 34 ipmi_lan.o \
35 35 ipmi_lancfg.o \
36 36 ipmi_list.o \
37 37 ipmi_misc.o \
38 38 ipmi_sdr.o \
39 39 ipmi_sel.o \
40 40 ipmi_sensor.o \
41 41 ipmi_sunoem.o \
42 42 ipmi_tables.o \
43 43 ipmi_user.o \
44 44 ipmi_util.o \
↓ open down ↓ |
44 lines elided |
↑ open up ↑ |
45 45 libipmi.o
46 46
47 47 SRCS= $(OBJECTS:%.o:$(SRCDIR)/%c.)
48 48
49 49 include ../../Makefile.lib
50 50
51 51 LIBS= $(DYNLIB) $(LINTLIB)
52 52
53 53 SRCDIR= ../common
54 54
55 -CLEANFILES += $(SRCDIR)/ipmi_tables.c
55 +CLEANFILES += $(SRCDIR)/ipmi_tables.c
56 56 INCS += -I$(SRCDIR)
57 -LDLIBS += -lc -lm -lnvpair -lsocket -lnsl
57 +LDLIBS += -lc -lm -lnvpair -lnsl
58 58 CPPFLAGS += $(INCS)
59 59 CSTD = $(CSTD_GNU99)
60 60
61 61 CERRWARN += -_gcc=-Wno-uninitialized
62 62
63 63 $(LINTLIB) := SRCS= $(SRCDIR)/$(LINTSRC)
64 64
65 65 .KEEP_STATE:
66 66
67 67 all: $(LIBS)
68 68
69 69 lint: lintcheck
70 70
71 71 $(SRCDIR)/ipmi_tables.c: $(SRCDIR)/mktables.sh $(SRCDIR)/libipmi.h
72 72 sh $(SRCDIR)/mktables.sh $(SRCDIR)/libipmi.h > $@
73 73
74 74 include ../../Makefile.targ
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX