xref: /illumos-gate/usr/src/lib/libdtrace/Makefile.com (revision 2f7f7a62d7a3e8a2e75eb88b95bc65871b6b90cb)
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 (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
23# Copyright (c) 2011, 2016 by Delphix. All rights reserved.
24#
25
26LIBRARY = libdtrace.a
27VERS = .1
28
29LIBSRCS = \
30	dt_aggregate.c \
31	dt_as.c \
32	dt_buf.c \
33	dt_cc.c \
34	dt_cg.c \
35	dt_consume.c \
36	dt_decl.c \
37	dt_dis.c \
38	dt_dof.c \
39	dt_error.c \
40	dt_errtags.c \
41	dt_sugar.c \
42	dt_handle.c \
43	dt_ident.c \
44	dt_inttab.c \
45	dt_link.c \
46	dt_list.c \
47	dt_open.c \
48	dt_options.c \
49	dt_program.c \
50	dt_map.c \
51	dt_module.c \
52	dt_names.c \
53	dt_parser.c \
54	dt_pcb.c \
55	dt_pid.c \
56	dt_pq.c \
57	dt_pragma.c \
58	dt_print.c \
59	dt_printf.c \
60	dt_proc.c \
61	dt_provider.c \
62	dt_regset.c \
63        dt_string.c \
64	dt_strtab.c \
65	dt_subr.c \
66	dt_work.c \
67	dt_xlator.c
68
69LIBISASRCS = \
70	dt_isadep.c
71
72OBJECTS = dt_lex.o dt_grammar.o $(MACHOBJS) $(LIBSRCS:%.c=%.o) $(LIBISASRCS:%.c=%.o)
73
74DRTISRCS = dlink_init.c dlink_common.c
75DRTIOBJS = $(DRTISRCS:%.c=pics/%.o)
76DRTIOBJ = drti.o
77
78LIBDAUDITSRCS = dlink_audit.c dlink_common.c
79LIBDAUDITOBJS = $(LIBDAUDITSRCS:%.c=pics/%.o)
80LIBDAUDIT = libdtrace_forceload.so
81
82DLINKSRCS = dlink_common.c dlink_init.c dlink_audit.c
83
84DLIBSRCS += \
85	errno.d \
86	fc.d \
87	io.d \
88	ip.d \
89	iscsit.d \
90	net.d \
91	nfs.d \
92	nfssrv.d \
93	procfs.d \
94	regs.d \
95	sched.d \
96	signal.d \
97	scsi.d \
98	srp.d \
99	sysevent.d \
100	tcp.d \
101	udp.d \
102	unistd.d
103
104include ../../Makefile.lib
105
106SRCS = $(LIBSRCS:%.c=../common/%.c) $(LIBISASRCS:%.c=../$(MACH)/%.c)
107LIBS = $(DYNLIB) $(LINTLIB)
108
109SRCDIR = ../common
110
111CLEANFILES += dt_lex.c dt_grammar.c dt_grammar.h y.output
112CLEANFILES += ../common/procfs.sed ../common/procfs.d
113CLEANFILES += ../common/io.sed ../common/io.d
114CLEANFILES += ../common/ip.sed ../common/ip.d
115CLEANFILES += ../common/net.sed ../common/net.d
116CLEANFILES += ../common/errno.d ../common/signal.d
117CLEANFILES += ../common/dt_errtags.c ../common/dt_names.c
118CLEANFILES += ../common/sysevent.sed ../common/sysevent.d
119CLEANFILES += ../common/tcp.sed ../common/tcp.d
120CLEANFILES += ../common/udp.sed ../common/udp.d
121CLEANFILES += $(LIBDAUDITOBJS) $(DRTIOBJS)
122
123CLOBBERFILES += $(LIBDAUDIT) drti.o
124
125CPPFLAGS += -I../common -I.
126CFLAGS += $(CCVERBOSE) $(C_BIGPICFLAGS)
127CFLAGS64 += $(CCVERBOSE) $(C_BIGPICFLAGS)
128
129CERRWARN += -_gcc=-Wno-unused-label
130CERRWARN += -_gcc=-Wno-unused-variable
131CERRWARN += -_gcc=-Wno-parentheses
132CERRWARN += -_gcc=-Wno-uninitialized
133CERRWARN += -_gcc=-Wno-switch
134
135YYCFLAGS =
136LDLIBS += -lgen -lproc -lrtld_db -lnsl -lsocket -lctf -lelf -lc
137DRTILDLIBS = $(LDLIBS.lib) -lc
138LIBDAUDITLIBS = $(LDLIBS.lib) -lmapmalloc -lc -lproc
139
140yydebug := YYCFLAGS += -DYYDEBUG
141
142$(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC)
143
144LFLAGS = -t -v
145YFLAGS = -d -v
146
147ROOTDLIBDIR = $(ROOT)/usr/lib/dtrace
148ROOTDLIBDIR64 = $(ROOT)/usr/lib/dtrace/64
149
150ROOTDLIBS = $(DLIBSRCS:%=$(ROOTDLIBDIR)/%)
151ROOTDOBJS = $(ROOTDLIBDIR)/$(DRTIOBJ) $(ROOTDLIBDIR)/$(LIBDAUDIT)
152ROOTDOBJS64 = $(ROOTDLIBDIR64)/$(DRTIOBJ) $(ROOTDLIBDIR64)/$(LIBDAUDIT)
153
154$(ROOTDLIBDIR)/%.d := FILEMODE=444
155$(ROOTDLIBDIR)/%.o := FILEMODE=444
156$(ROOTDLIBDIR64)/%.o :=	FILEMODE=444
157$(ROOTDLIBDIR)/%.so := FILEMODE=555
158$(ROOTDLIBDIR64)/%.so := FILEMODE=555
159
160.KEEP_STATE:
161
162all: $(LIBS) $(DRTIOBJ) $(LIBDAUDIT)
163
164lint: lintdlink lintcheck
165
166lintdlink: $(DLINKSRCS:%.c=../common/%.c)
167	$(LINT.c) $(DLINKSRCS:%.c=../common/%.c) $(DRTILDLIBS)
168
169dt_lex.c: $(SRCDIR)/dt_lex.l dt_grammar.h
170	$(LEX) $(LFLAGS) $(SRCDIR)/dt_lex.l > $@
171
172dt_grammar.c dt_grammar.h: $(SRCDIR)/dt_grammar.y
173	$(YACC) $(YFLAGS) $(SRCDIR)/dt_grammar.y
174	@mv y.tab.h dt_grammar.h
175	@mv y.tab.c dt_grammar.c
176
177pics/dt_lex.o pics/dt_grammar.o := CFLAGS += $(YYCFLAGS)
178pics/dt_lex.o pics/dt_grammar.o := CFLAGS64 += $(YYCFLAGS)
179
180pics/dt_lex.o pics/dt_grammar.o := CERRWARN += -erroff=E_STATEMENT_NOT_REACHED
181pics/dt_lex.o pics/dt_grammar.o := CCVERBOSE =
182
183../common/dt_errtags.c: ../common/mkerrtags.sh ../common/dt_errtags.h
184	sh ../common/mkerrtags.sh < ../common/dt_errtags.h > $@
185
186../common/dt_names.c: ../common/mknames.sh $(SRC)/uts/common/sys/dtrace.h
187	sh ../common/mknames.sh < $(SRC)/uts/common/sys/dtrace.h > $@
188
189../common/errno.d: ../common/mkerrno.sh $(SRC)/uts/common/sys/errno.h
190	sh ../common/mkerrno.sh < $(SRC)/uts/common/sys/errno.h > $@
191
192../common/signal.d: ../common/mksignal.sh $(SRC)/uts/common/sys/iso/signal_iso.h
193	sh ../common/mksignal.sh < $(SRC)/uts/common/sys/iso/signal_iso.h > $@
194
195../common/%.sed: ../common/%.sed.in
196	$(COMPILE.cpp) -D_KERNEL $< | tr -d ' ' | tr '"' '@' | \
197	    sed 's/\&/\\\&/g' | grep '^s/' > $@
198
199../common/procfs.d: ../common/procfs.sed ../common/procfs.d.in
200	sed -f ../common/procfs.sed < ../common/procfs.d.in > $@
201
202../common/io.d: ../common/io.sed ../common/io.d.in
203	sed -f ../common/io.sed < ../common/io.d.in > $@
204
205../common/ip.d: ../common/ip.sed ../common/ip.d.in
206	sed -f ../common/ip.sed < ../common/ip.d.in > $@
207
208../common/net.d: ../common/net.sed ../common/net.d.in
209	sed -f ../common/net.sed < ../common/net.d.in > $@
210
211../common/sysevent.d: ../common/sysevent.sed ../common/sysevent.d.in
212	sed -f ../common/sysevent.sed < ../common/sysevent.d.in > $@
213
214../common/tcp.d: ..//common/tcp.sed ../common/tcp.d.in
215	sed -f ../common/tcp.sed < ../common/tcp.d.in > $@
216
217../common/udp.d: ../common/udp.sed ../common/udp.d.in
218	sed -f ../common/udp.sed < ../common/udp.d.in > $@
219
220pics/%.o: ../$(MACH)/%.c
221	$(COMPILE.c) -o $@ $<
222	$(POST_PROCESS_O)
223
224pics/%.o: ../$(MACH)/%.s
225	$(COMPILE.s) -o $@ $<
226	$(POST_PROCESS_O)
227
228$(DRTIOBJ): $(DRTIOBJS)
229	$(LD) -o $@ -r -Blocal -Breduce $(DRTIOBJS)
230	$(POST_PROCESS_O)
231
232$(LIBDAUDIT): $(LIBDAUDITOBJS)
233	$(LINK.c) -o $@ $(GSHARED) -h$(LIBDAUDIT) $(ZTEXT) $(ZDEFS) $(BDIRECT) \
234	    $(MAPFILE.PGA:%=-M%) $(MAPFILE.NED:%=-M%) $(LIBDAUDITOBJS) \
235	    $(LIBDAUDITLIBS)
236	$(POST_PROCESS_SO)
237
238$(ROOTDLIBDIR):
239	$(INS.dir)
240
241$(ROOTDLIBDIR64): $(ROOTDLIBDIR)
242	$(INS.dir)
243
244$(ROOTDLIBDIR)/%.d: ../common/%.d
245	$(INS.file)
246
247$(ROOTDLIBDIR)/%.d: ../$(MACH)/%.d
248	$(INS.file)
249
250$(ROOTDLIBDIR)/%.d: %.d
251	$(INS.file)
252
253$(ROOTDLIBDIR)/%.o: %.o
254	$(INS.file)
255
256$(ROOTDLIBDIR64)/%.o: %.o
257	$(INS.file)
258
259$(ROOTDLIBDIR)/%.so: %.so
260	$(INS.file)
261
262$(ROOTDLIBDIR64)/%.so: %.so
263	$(INS.file)
264
265$(ROOTDLIBS): $(ROOTDLIBDIR)
266
267$(ROOTDOBJS): $(ROOTDLIBDIR)
268
269$(ROOTDOBJS64): $(ROOTDLIBDIR64)
270
271include ../../Makefile.targ
272