xref: /illumos-gate/usr/src/lib/libproc/Makefile.com (revision 581cede61ac9c14d8d4ea452562a567189eead78)
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 2008 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25
26LIBRARY = libproc.a
27VERS = .1
28
29CMNOBJS =	\
30	P32ton.o	\
31	Pcontrol.o	\
32	Pcore.o		\
33	Pexecname.o	\
34	Pgcore.o	\
35	Pidle.o		\
36	Pisprocdir.o	\
37	Plwpregs.o	\
38	Pservice.o	\
39	Psymtab.o	\
40	Psymtab_machelf32.o \
41	$(CMNOBJS64)	\
42	Pscantext.o	\
43	Pstack.o	\
44	Psyscall.o	\
45	Putil.o		\
46	Pzone.o		\
47	pr_door.o	\
48	pr_exit.o	\
49	pr_fcntl.o	\
50	pr_getitimer.o	\
51	pr_getrctl.o	\
52	pr_getrlimit.o	\
53	pr_getsockname.o \
54	pr_ioctl.o	\
55	pr_lseek.o	\
56	pr_memcntl.o	\
57	pr_meminfo.o	\
58	pr_mmap.o	\
59	pr_open.o	\
60	pr_pbind.o	\
61	pr_rename.o	\
62	pr_sigaction.o	\
63	pr_stat.o	\
64	pr_statvfs.o	\
65	pr_tasksys.o	\
66	pr_waitid.o	\
67	proc_get_info.o	\
68	proc_names.o	\
69	proc_arg.o	\
70	proc_set.o	\
71	proc_stdio.o
72
73ISAOBJS =	\
74	Pisadep.o
75
76OBJECTS = $(CMNOBJS) $(ISAOBJS)
77
78# include library definitions
79include ../../Makefile.lib
80include ../../Makefile.rootfs
81
82SRCS =		$(CMNOBJS:%.o=../common/%.c) $(ISAOBJS:%.o=%.c)
83
84LIBS =		$(DYNLIB) $(LINTLIB)
85LDLIBS +=	-lrtld_db -lelf -lctf -lc
86
87SRCDIR =	../common
88$(LINTLIB) :=	SRCS = $(SRCDIR)/$(LINTSRC)
89
90MAPFILES +=	mapfile-vers
91
92CFLAGS +=	$(CCVERBOSE)
93CPPFLAGS +=	-I$(SRCDIR)
94
95# All interfaces are interposable, therefore don't allow direct binding to
96# libproc.  Disable libproc from directly binding to itself, but allow libperl
97# to directly bind to its dependencies (ie. map -Bdirect -> -zdirect).  Ensure
98# lazy loading is established (which is enabled automatically with -Bdirect).
99BDIRECT =
100DYNFLAGS +=	$(BNODIRECT) $(ZDIRECT) $(ZLAZYLOAD)
101
102.KEEP_STATE:
103
104all: $(LIBS)
105
106lint: lintcheck
107
108# include library targets
109include ../../Makefile.targ
110
111objs/%.o pics/%.o: %.c
112	$(COMPILE.c) -o $@ $<
113	$(POST_PROCESS_O)
114