6811333 Remove prom_printf() message in emlxs driver
[opensolaris.git] / usr / src / lib / libproc / Makefile.com
blob577aea87ec9263bd52f3032abec41f932760e85d
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
22 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23 # Use is subject to license terms.
26 LIBRARY = libproc.a
27 VERS = .1
29 CMNOBJS =       \
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
73 ISAOBJS =       \
74         Pisadep.o
76 OBJECTS = $(CMNOBJS) $(ISAOBJS)
78 # include library definitions
79 include ../../Makefile.lib
80 include ../../Makefile.rootfs
82 SRCS =          $(CMNOBJS:%.o=../common/%.c) $(ISAOBJS:%.o=%.c)
84 LIBS =          $(DYNLIB) $(LINTLIB)
85 LDLIBS +=       -lrtld_db -lelf -lctf -lc
87 SRCDIR =        ../common
88 $(LINTLIB) :=   SRCS = $(SRCDIR)/$(LINTSRC)
90 MAPFILES +=     mapfile-vers
92 CFLAGS +=       $(CCVERBOSE)
93 CPPFLAGS +=     -I$(SRCDIR)
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).
99 BDIRECT =
100 DYNFLAGS +=     $(BNODIRECT) $(ZDIRECT) $(ZLAZYLOAD)
102 .KEEP_STATE:
104 all: $(LIBS)
106 lint: lintcheck
108 # include library targets
109 include ../../Makefile.targ
111 objs/%.o pics/%.o: %.c
112         $(COMPILE.c) -o $@ $<
113         $(POST_PROCESS_O)