summaryrefslogtreecommitdiff
path: root/usr/src/cmd/ptools/Makefile.bld
blob: 8db9c449fe650db5c525c8e79e0324a886992a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#

#
# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# Copyright 2019 Joyent, Inc.

PROG:sh = basename `cd ..; pwd`

include ../../../Makefile.ctf

OBJS = $(PROG).o

SRCS = ../$(PROG).c

FILEMODE = 0555

# libproc is added individually as pwait doesn't need it.
# These are defined this way so lint can use them
LDLIBS_pargs		= -lproc
LDLIBS_pcred		= -lproc
LDLIBS_pfiles		= -lproc -lnsl
LDLIBS_pflags		= -lproc
LDLIBS_pldd		= -lproc
LDLIBS_plgrp		= -lproc -llgrp
LDLIBS_pmap		= -lproc
LDLIBS_pmadvise		= -lproc
LDLIBS_ppriv		= -lproc
LDLIBS_preap		= -lproc
LDLIBS_prun		= -lproc
LDLIBS_psecflags	= -lproc -lproject
LDLIBS_psig		= -lproc
LDLIBS_pstack		= -lproc -lc_db
LDLIBS_pstop		= -lproc
LDLIBS_ptime		= -lproc
LDLIBS_ptree		= -lproc -lcontract
LDLIBS_pwdx		= -lproc

LDLIBS += $(LDLIBS_$(PROG))

CERRWARN_plgrp	+= -_gcc=-Wno-parentheses
CERRWARN_plgrp	+= -_smatch=off

CERRWARN_pmadvise += -_smatch=off

CERRWARN_ppriv	+= -_gcc=-Wno-parentheses
CERRWARN_ppriv	+= $(CNOWARN_UNINIT)

CERRWARN_ptree	+= -_gcc=-Wno-parentheses
CERRWARN_ptree	+= -_smatch=off

CERRWARN_pstack	+= $(CNOWARN_UNINIT)
CERRWARN_pstack	+= -_gcc=-Wno-clobbered

CERRWARN_pargs	+= -_gcc=-Wno-clobbered
CERRWARN_pargs	+= -_gcc=-Wno-type-limits

CERRWARN_pwait	+= -_smatch=off

CERRWARN += $(CERRWARN_$(PROG))

# pargs depends on ../../common/elfcap components
# pmadvise depends on pmap components

ELFCAP =	$(SRC)/common/elfcap
PMAP =		$(SRC)/cmd/ptools/pmap

CPPFLAGS_pargs =	-I$(ELFCAP)
OBJS_pargs =		elfcap.o
SRCS_pargs =		$(ELFCAP)/elfcap.c

CPPFLAGS_pmap =		-I$(PMAP)
OBJS_pmap =		pmap_common.o
SRCS_pmap =		$(PMAP)/pmap_common.c

CPPFLAGS_pmadvise =	-I$(PMAP)
OBJS_pmadvise =		pmap_common.o
SRCS_pmadvise =		$(PMAP)/pmap_common.c

LN_pargs =		penv pauxv

CPPFLAGS +=	$(CPPFLAGS_$(PROG))
OBJS +=		$(OBJS_$(PROG))
SRCS +=		$(SRCS_$(PROG))

$(OBJS_ptree) :=	CSTD = $(CSTD_GNU99)
ptree :=		CSTD = $(CSTD_GNU99)

INSTALL_NEW=
INSTALL_LEGACY=$(RM) $(ROOTPROCBINSYMLINK) ; \
	$(LN) -s ../../bin/$(PROG) $(ROOTPROCBINSYMLINK)

.KEEP_STATE:

elfcap.o:	$(ELFCAP)/elfcap.c
		$(COMPILE.c) -o $@ $(ELFCAP)/elfcap.c
		$(POST_PROCESS_O)

pmap_common.o:	$(PMAP)/pmap_common.c
		$(COMPILE.c) -o $@ $(PMAP)/pmap_common.c
		$(POST_PROCESS_O)

%.o:	../%.c
	$(COMPILE.c) $<
	$(POST_PROCESS_O)

all:	$(PROG) $(LN_$(PROG))

ROOTBINLN=$(LN_$(PROG):%=$(ROOTBIN)/%)
ROOTBINPROG=$(ROOTBIN)/$(PROG)
ROOTPROCBINSYMLINK=$(ROOT)/usr/proc/bin/$(PROG)

$(PROG): $$(OBJS)
	$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
	$(POST_PROCESS)

#
# Install the ptool, symlinking it into /usr/proc/bin if PTOOL_TYPE is set
# to LEGACY.
#
install: all $(ROOTISAPROG) $(ROOTISALN) $(ROOTBINLN)
	-$(RM) $(ROOTBINPROG)
	-$(LN) $(ISAEXEC) $(ROOTBINPROG)
	-$(INSTALL_$(PTOOL_TYPE))

$(ROOTBINLN): $(ROOTISAPROG)
	-$(RM) $@
	-$(LN) $(ISAEXEC) $@

$(ROOTISALN): $(ROOTISAPROG)
	-$(RM) $@
	-$(LN) $(ROOTISAPROG) $@

$(LN_$(PROG)): $(PROG)
	-$(RM) $@
	-$(LN) $(PROG) $@

clean:
	$(RM) $(OBJS)

lint:
	$(LINT.c) $(SRCS) $(LDLIBS)