xref: /illumos-gate/usr/src/lib/librt/Makefile.com (revision 80ab886d233f514d54c2a6bdeb9fdfd951bd6881)
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# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25# ident	"%Z%%M%	%I%	%E% SMI"
26#
27# lib/librt/Makefile.com
28
29LIBRARY=	librt.a
30VERS=		.1
31
32OBJECTS=	\
33	aio.o		\
34	clock_timer.o	\
35	fallocate.o	\
36	fdatasync.o	\
37	mqueue.o	\
38	pos4.o		\
39	pos4obj.o	\
40	sched.o		\
41	sem.o		\
42	shm.o		\
43	sigrt.o
44
45include ../../Makefile.lib
46include ../../Makefile.rootfs
47
48LIBS =		$(DYNLIB) $(LINTLIB)
49LDLIBS += 	-laio -lmd -lc
50$(LINTLIB) :=	SRCS = $(SRCDIR)/$(LINTSRC)
51
52SRCDIR=		../common
53MAPDIR=		../spec/$(TRANSMACH)
54SPECMAPFILE=	$(MAPDIR)/mapfile
55
56ROOTLINTDIR64=	$(ROOTLIBDIR64)
57ROOTLINKS64=    $(ROOTLIBDIR64)/$(LIBLINKS)
58
59CFLAGS	+=	$(CCVERBOSE)
60CPPFLAGS +=	-D_REENTRANT -I../../common/inc
61
62#
63# If and when somebody gets around to messaging this, CLOBBERFILE should not
64# be cleared (so that any .po file will be clobbered.
65#
66CLOBBERFILES=	test
67
68.KEEP_STATE:
69
70all: $(LIBS) fnamecheck
71
72lint: lintcheck
73
74# install rule for 64 bit lint library target
75$(ROOTLINTDIR64)/%.ln:	%.ln
76	$(INS.file)
77	cd $(ROOTLINTDIR64); \
78		$(RM) llib-lposix4.ln ; \
79		$(SYMLINK) ./llib-lrt.ln llib-lposix4.ln ;
80
81# install rule for lint library target
82$(ROOTLINTDIR)/%.ln:	%.ln
83	$(INS.file)
84	cd $(ROOTLINTDIR); \
85		$(RM) llib-lposix4 ; \
86		$(SYMLINK) ./llib-lrt llib-lposix4 ; \
87		$(RM) llib-lposix4.ln ; \
88		$(SYMLINK) ./llib-lrt.ln llib-lposix4.ln ;
89
90include ../../Makefile.targ
91
92# install rules for 32-bit librt.so in /usr/lib
93$(ROOTLINKS) := INS.liblink= \
94	$(RM) $@; $(SYMLINK) $(LIBLINKPATH)$(LIBLINKS)$(VERS) $@; \
95		cd $(ROOTLIBDIR); \
96		$(RM)  libposix4.so$(VERS) libposix4.so; \
97		$(SYMLINK) librt.so$(VERS) libposix4.so$(VERS); \
98		$(SYMLINK) libposix4.so$(VERS) libposix4.so;
99
100# install rules for 64-bit librt.so in /usr/lib/sparcv9
101$(ROOTLIBDIR64)/$(LIBLINKS) := INS.liblink64 = \
102	-$(RM) $@; \
103	cd $(ROOTLIBDIR64); \
104	$(RM) libposix4.so$(VERS) libposix4.so ; \
105	$(SYMLINK) $(LIBLINKS)$(VERS) $(LIBLINKS); \
106	$(SYMLINK) librt.so$(VERS) libposix4.so$(VERS); \
107	$(SYMLINK) libposix4.so$(VERS) libposix4.so
108
109