Merge branch 'merges' of git://repo.or.cz/unleashed into merges
[unleashed.git] / usr / src / lib / libproc / Makefile.com
blob92083b2688051e7d012df2428fb21a38f7bbaf87
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 (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
23 # Copyright 2012 DEY Storage Systems, Inc.  All rights reserved.
24 # Copyright (c) 2013 by Delphix. All rights reserved.
27 LIBRARY = libproc.a
28 VERS = .1
30 CMNOBJS =       \
31         P32ton.o        \
32         Pcontrol.o      \
33         Pcore.o         \
34         Pexecname.o     \
35         Pfdinfo.o       \
36         Pgcore.o        \
37         Pidle.o         \
38         Pisprocdir.o    \
39         Plwpregs.o      \
40         Pservice.o      \
41         Psymtab.o       \
42         Psymtab_machelf32.o \
43         $(CMNOBJS64)    \
44         Pscantext.o     \
45         Pstack.o        \
46         Psyscall.o      \
47         Putil.o         \
48         Pzone.o         \
49         pr_door.o       \
50         pr_exit.o       \
51         pr_fcntl.o      \
52         pr_getitimer.o  \
53         pr_getrctl.o    \
54         pr_getrlimit.o  \
55         pr_getsockname.o \
56         pr_ioctl.o      \
57         pr_lseek.o      \
58         pr_memcntl.o    \
59         pr_meminfo.o    \
60         pr_mmap.o       \
61         pr_open.o       \
62         pr_pbind.o      \
63         pr_rename.o     \
64         pr_sigaction.o  \
65         pr_stat.o       \
66         pr_statvfs.o    \
67         pr_tasksys.o    \
68         pr_waitid.o     \
69         proc_get_info.o \
70         proc_names.o    \
71         proc_arg.o      \
72         proc_set.o      \
73         proc_stdio.o
75 ISAOBJS =       \
76         Pisadep.o
78 OBJECTS = $(CMNOBJS) $(ISAOBJS) $(SAVEOBJS)
80 # include library definitions
81 include ../../Makefile.lib
82 include ../../Makefile.rootfs
84 SRCS =          $(CMNOBJS:%.o=../common/%.c) $(ISAOBJS:%.o=%.c)
86 LIBS =          $(DYNLIB)
87 LDLIBS +=       -lrtld_db -lelf -lctf -lc
88 C99MODE =       $(C99_ENABLE)
89 CPPFLAGS +=     $($(MACH64)_CPPFLAGS)
91 SRCDIR =        ../common
93 CPPFLAGS +=     -I$(SRCDIR)
95 CERRWARN +=     -Wno-uninitialized
96 CERRWARN +=     -Wno-parentheses
97 CERRWARN +=     -Wno-type-limits
98 CERRWARN +=     -Wno-unused-label
100 # All interfaces are interposable, therefore don't allow direct binding to
101 # libproc.  Disable libproc from directly binding to itself, but allow libperl
102 # to directly bind to its dependencies (ie. map -Bdirect -> -zdirect).  Ensure
103 # lazy loading is established (which is enabled automatically with -Bdirect).
104 BDIRECT =
105 DYNFLAGS +=     $(BNODIRECT) $(ZDIRECT) $(ZLAZYLOAD)
107 .KEEP_STATE:
109 all: $(LIBS)
111 # include library targets
112 include ../../Makefile.targ
114 objs/%.o pics/%.o: %.c
115         $(COMPILE.c) -o $@ $<
116         $(POST_PROCESS_O)
118 objs/%.o pics/%.o: $(SRC)/common/saveargs/%.c
119         $(COMPILE.c) -o $@ $<
120         $(POST_PROCESS_O)