xref: /illumos-gate/usr/src/uts/Makefile.targ (revision 756e192d9e51e882503cd31106adc38c895f0ede)
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 2007 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25#ident	"%Z%%M%	%I%	%E% SMI"
26#
27#	This Makefiles contains the common targets and definitions for
28#	all kernels. It is to be included in the Makefiles for specific
29#	implementation architectures and processor architecture dependent
30#	modules: i.e.: all driving kernel Makefiles.
31#
32
33#
34#	Default rule for building the lint library directory:
35#
36$(LINT_LIB_DIR):
37	-@mkdir -p $@ 2> /dev/null
38
39#
40#	All C objects depend on inline files. However, cc(1) doesn't generate
41#	the correct dependency info. Also, these Makefiles don't contain a
42#	separate list of C-derived object files (but it is light weight to
43#	let the assembler files think they depend upon this when they don't).
44#	Fortunately, the inline files won't change very often. So, for now,
45#	all objects depend on the inline files. Remove this when the inliner
46#	is fixed to drop correct dependency information.
47#
48$(OBJECTS): $(INLINES)
49
50#
51#	Partially link .o files to generate the kmod. The fake dependency
52#	on modstubs simplifies things...
53#	ELFSIGN_MOD is defined in the individual KCF plug-in modules Makefiles,
54#	and will sign the ELF objects using elfsign(1).
55#
56$(BINARY):		$(OBJECTS)
57	$(LD) -r $(LDFLAGS) -o $@ $(OBJECTS)
58	$(CTFMERGE_UNIQUIFY_AGAINST_GENUNIX)
59	$(POST_PROCESS)
60	$(ELFSIGN_MOD)
61
62#
63#	This target checks each kmod for undefined entry points. It does not
64#	modify the kmod in any way.
65#
66$(MODULE).check:	FRC
67	@BUILD_TYPE=DBG32 $(MAKE) $(MODULE).check.targ
68
69$(MODULE).check.targ:	$(BINARY) $(OBJECTS) $(EXTRA_CHECK_OBJS) $(UNIX_O) $(MODSTUBS_O) $(GENLIB)
70	$(LD) -o /dev/null $(OBJECTS) $(EXTRA_CHECK_OBJS) $(UNIX_O) $(MODSTUBS_O) $(GENLIB)
71
72#
73#	Module lint library construction targets.
74#
75MOD_LINT_LIB	= $(LINT_LIB_DIR)/llib-l$(LINT_MODULE).ln
76
77$(MOD_LINT_LIB):	$(LINT_LIB_DIR) $(LINTS)
78	@-$(ECHO) "\n$(OBJS_DIR)/$(MODULE): (library construction):"
79	@$(LINT) -o $(LINT_MODULE)-$(OBJS_DIR) $(LINTFLAGS) $(LINTS)
80	@$(MV) llib-l$(LINT_MODULE)-$(OBJS_DIR).ln $@
81
82$(LINT_MODULE).lint:	$(MOD_LINT_LIB) $(LINT_LIB) $(GEN_LINT_LIB)
83	@-$(ECHO) "\n$(OBJS_DIR)/$(LINT_MODULE): global crosschecks:"
84	@$(LINT) $(LINTFLAGS) $(MOD_LINT_LIB) $(LINT_LIB) $(GEN_LINT_LIB)
85
86#
87# Since assym.h is a derived file, the dependency must be explicit for
88# all files including this file. (This is only actually required in the
89# instance when the .nse_depinfo file does not exist.) It may seem that
90# the lint targets should also have a similar dependency, but they don't
91# since only C headers are included when #defined(lint) is true. The
92# actual lists are defined in */Makefile.files.
93#
94$(ASSYM_DEPS:%=$(OBJS_DIR)/%):	$(DSF_DIR)/$(OBJS_DIR)/assym.h
95
96#
97#	Everybody need to know how to create a modstubs.o built with the
98#	appropriate flags and located in the appropriate location.
99#
100$(MODSTUBS_O):	$(MODSTUBS)
101	$(COMPILE.s) -o $@ $(MODSTUBS)
102
103$(LINTS_DIR)/modstubs.ln:	$(MODSTUBS)
104	@($(LHEAD) $(LINT.s) $(MODSTUBS) $(LTAIL))
105
106#
107# Build the source file which contains the kernel's utsname,
108# with release, version and machine set as follows:
109#
110#	release: contents of $(RELEASE) (Spaces replaced by '_')
111#	version: contents of $(PATCHID) (Spaces replaced by '_')
112#	machine: contents of $(UNAME_M)
113#
114# Build environment information is only contained in the comment section.
115#
116# The version string, normally the variable VERSION, is set to display
117# environmental information temporarily while in development because
118# it provides a little more useful information.
119#
120VERSION_STRING	= ($(ECHO) $$LOGNAME [\`basename $$CODEMGR_WS\`] \\\c; date +%D)
121$(INTERNAL_RELEASE_BUILD)VERSION_STRING = $(ECHO) $(PATCHID)
122
123$(OBJS_DIR)/vers.o: $(OBJECTS)
124	$(COMPILE.c) -DUTS_RELEASE=\"`$(ECHO) $(RELEASE) | sed -e 's/ /_/g'`\" \
125	    -DUTS_VERSION=\"`$(VERSION_STRING) | sed -e 's/ /_/g'`\" \
126	    -DUTS_PLATFORM=\"$(UNAME_M)\" -o $@ $(SRC)/uts/common/os/vers.c
127	$(CTFCONVERT_O)
128	$(POST_PROCESS_O)
129
130$(LINTS_DIR)/vers.ln: $(SRC)/uts/common/os/vers.c
131	@($(LHEAD) $(LINT.c) -DUTS_RELEASE=\"\" -DUTS_VERSION=\"\" \
132	    -DUTS_PLATFORM=\"\" $(SRC)/uts/common/os/vers.c $(LTAIL))
133
134#
135#	Installation targets and rules:
136#
137$(ROOT_MOD_DIR) $(USR_MOD_DIR):
138	-$(INS.dir.root.sys)
139
140$(ROOT_MOD_DIRS_32):	$(ROOT_MOD_DIR)
141	-$(INS.dir.root.sys)
142
143$(USR_MOD_DIRS_32):	$(USR_MOD_DIR)
144	-$(INS.dir.root.sys)
145
146$(ROOT_MOD_DIR)/%:	$(OBJS_DIR)/% $(ROOT_MOD_DIR) FRC
147	$(INS.file)
148
149$(ROOT_CPU_DIR)/%:	$(OBJS_DIR)/% $(ROOT_CPU_DIR) FRC
150	$(INS.file)
151
152$(ROOT_DRV_DIR)/%:	$(OBJS_DIR)/% $(ROOT_DRV_DIR) FRC
153	$(INS.file)
154
155$(ROOT_DTRACE_DIR)/%:	$(OBJS_DIR)/% $(ROOT_DTRACE_DIR) FRC
156	$(INS.file)
157
158$(ROOT_EXEC_DIR)/%:	$(OBJS_DIR)/% $(ROOT_EXEC_DIR) FRC
159	$(INS.file)
160
161$(ROOT_FS_DIR)/%:	$(OBJS_DIR)/% $(ROOT_FS_DIR) FRC
162	$(INS.file)
163
164$(ROOT_SCHED_DIR)/%:	$(OBJS_DIR)/% $(ROOT_SCHED_DIR) FRC
165	$(INS.file)
166
167$(ROOT_STRMOD_DIR)/%:	$(OBJS_DIR)/% $(ROOT_STRMOD_DIR) FRC
168	$(INS.file)
169
170$(ROOT_IPP_DIR)/%:	$(OBJS_DIR)/% $(ROOT_IPP_DIR) FRC
171	$(INS.file)
172
173$(ROOT_SYS_DIR)/%:	$(OBJS_DIR)/% $(ROOT_SYS_DIR) FRC
174	$(INS.file)
175
176$(ROOT_MISC_DIR)/%:	$(OBJS_DIR)/% $(ROOT_MISC_DIR) FRC
177	$(INS.file)
178
179$(ROOT_DACF_DIR)/%:	$(OBJS_DIR)/% $(ROOT_DACF_DIR) FRC
180	$(INS.file)
181
182$(ROOT_BRAND_DIR)/%:	$(OBJS_DIR)/% $(ROOT_BRAND_DIR) FRC
183	$(INS.file)
184
185$(ROOT_CRYPTO_DIR)/%:	$(OBJS_DIR)/% $(ROOT_CRYPTO_DIR) FRC
186	$(INS.file)
187
188$(ROOT_KGSS_DIR)/%:	$(OBJS_DIR)/% $(ROOT_KGSS_DIR) FRC
189	$(INS.file)
190
191$(ROOT_MACH_DIR)/%:	$(OBJS_DIR)/% $(ROOT_MACH_DIR) FRC
192	$(INS.file)
193
194$(ROOT_FONT_DIR)/%:	$(OBJS_DIR)/% $(ROOT_MOD_DIR) $(ROOT_FONT_DIR) FRC
195	$(INS.file)
196
197$(ROOT_MAC_DIR)/%:	$(OBJS_DIR)/% $(ROOT_MOD_DIR) $(ROOT_MAC_DIR) FRC
198	$(INS.file)
199
200$(ROOT_DEVNAME_DIR)/%:	$(OBJS_DIR)/% $(ROOT_DEVNAME_DIR) FRC
201	$(INS.file)
202
203$(USR_DRV_DIR)/%:	$(OBJS_DIR)/% $(USR_DRV_DIR) FRC
204	$(INS.file)
205
206$(USR_EXEC_DIR)/%:	$(OBJS_DIR)/% $(USR_EXEC_DIR) FRC
207	$(INS.file)
208
209$(USR_FS_DIR)/%:	$(OBJS_DIR)/% $(USR_FS_DIR) FRC
210	$(INS.file)
211
212$(USR_SCHED_DIR)/%:	$(OBJS_DIR)/% $(USR_SCHED_DIR) FRC
213	$(INS.file)
214
215$(USR_STRMOD_DIR)/%:	$(OBJS_DIR)/% $(USR_STRMOD_DIR) FRC
216	$(INS.file)
217
218$(USR_SYS_DIR)/%:	$(OBJS_DIR)/% $(USR_SYS_DIR) FRC
219	$(INS.file)
220
221$(USR_MISC_DIR)/%:	$(OBJS_DIR)/% $(USR_MISC_DIR) FRC
222	$(INS.file)
223
224$(USR_DACF_DIR)/%:	$(OBJS_DIR)/% $(USR_DACF_DIR) FRC
225	$(INS.file)
226
227$(USR_PCBE_DIR)/%:	$(OBJS_DIR)/% $(USR_PCBE_DIR) FRC
228	$(INS.file)
229
230$(USR_DEVNAME_DIR)/%:	$(OBJS_DIR)/% $(USR_DEVNAME_DIR) FRC
231	$(INS.file)
232
233include $(SRC)/Makefile.psm.targ
234
235#
236#	Target for 64b modules
237#
238$(ROOT_KERN_DIR_64):
239	-$(INS.dir.root.sys)
240
241$(ROOT_KERN_DIR_64)/%:	$(OBJS_DIR)/% $(ROOT_KERN_DIR_64) FRC
242	$(INS.file)
243
244%/$(SUBDIR64):		%
245	-$(INS.dir.root.sys)
246
247#
248#	Targets for '.conf' file installation.
249#
250$(ROOT_CONFFILE):	$(SRC_CONFFILE)	$(ROOT_CONFFILE:%/$(CONFFILE)=%)
251	$(INS.conffile)
252
253#
254#	Targets for '.esa' (activation) file installation.
255#
256$(ROOT_ACTFILE):
257	$(INS.actfile)
258
259#
260#	Targets for creating links between common platforms. ROOT_PLAT_LINKS
261#	are are the /platform level while ROOT_PLAT_LINKS_2 are one level
262#	down (/platform/`uname -i`/{lib|sbin|kernel}.
263#
264$(ROOT_PLAT_LINKS):
265	$(INS.slink1)
266
267$(ROOT_PLAT_LINKS_2):
268	$(INS.slink2)
269
270$(USR_PLAT_LINKS):
271	$(INS.slink1)
272
273$(USR_PLAT_LINKS_2):
274	$(INS.slink2)
275
276#
277# multiple builds support
278#
279def $(DEF_DEPS)			:= TARGET = def
280all $(ALL_DEPS)			:= TARGET = all
281clean $(CLEAN_DEPS)		:= TARGET = clean
282clobber $(CLOBBER_DEPS)		:= TARGET = clobber
283lint $(LINT_DEPS)		:= TARGET = lint
284modlintlib $(MODLINTLIB_DEPS)	:= TARGET = modlintlib
285modlist	$(MODLIST_DEPS)		:= TARGET = modlist
286modlist	$(MODLIST_DEPS)		:= NO_STATE= -K $$MODSTATE$$$$
287clean.lint $(CLEAN_LINT_DEPS)	:= TARGET = clean.lint
288install $(INSTALL_DEPS)		:= TARGET = install
289symcheck $(SYM_DEPS)		:= TARGET = symcheck
290
291ALL_TARGS	= def all clean clobber lint modlintlib \
292		  clean.lint lintlib install symcheck
293
294ALL_OBJ32	= $(ALL_TARGS:%=%.obj32)
295
296$(ALL_OBJ32):	FRC
297	@BUILD_TYPE=OBJ32 VERSION='$(VERSION)' $(MAKE) $(NO_STATE) $(TARGET).targ
298
299ALL_DEBUG32	= $(ALL_TARGS:%=%.debug32)
300
301$(ALL_DEBUG32):	FRC
302	@BUILD_TYPE=DBG32 VERSION='$(VERSION)' $(MAKE) $(NO_STATE) $(TARGET).targ
303
304ALL_OBJ64	= $(ALL_TARGS:%=%.obj64)
305
306$(ALL_OBJ64):	FRC
307	@BUILD_TYPE=OBJ64 VERSION='$(VERSION)' $(MAKE) $(NO_STATE) $(TARGET).targ
308
309ALL_DEBUG64	= $(ALL_TARGS:%=%.debug64)
310
311$(ALL_DEBUG64):	FRC
312	@BUILD_TYPE=DBG64 VERSION='$(VERSION)' $(MAKE) $(NO_STATE) $(TARGET).targ
313
314#
315#	Currently only the IP module needs symbol checking on obj64.
316#	Other modules have the same global-objs nm output for debug64 and obj64.
317#
318$(SISCHECK_DEPS):	$(DEF_DEPS)
319	@TARG=`$(ECHO) $@ | $(CUT) -d'.' -f2`; \
320	MODSYMS=$(MODULE).symbols.$$TARG; \
321	if [ -f "$(MODULE).global-objs.$$TARG" ]; then \
322		$(GREP) -v '#' $(MODULE).global-objs.$$TARG |$(GREP) . | \
323		    $(SORT) -u > $$MODSYMS.tmp; \
324		$(NM) $$TARG/$(MODULE) |$(GREP) OBJT |$(GREP) -v UNDEF | \
325		    $(CUT) -d'|' -f8 |$(GREP) -v '^___const_' | \
326		    $(GREP) -v '\.[0-9]*$$' |$(SORT) -u \
327		    > $$MODSYMS.tmp.new; \
328		$(DIFF) $$MODSYMS.tmp $$MODSYMS.tmp.new > $$MODSYMS.diff || \
329		    ($(ECHO) "warning: $(MODULE) symbol checking:" \
330		    "global variable(s) introduced and/or removed."; \
331		    $(CAT) $$MODSYMS.diff; exit 1) \
332	fi
333
334$(SISCLEAN_DEPS):
335	-TARG=`$(ECHO) $@ | $(CUT) -d'.' -f2`; \
336	MODSYMS=$(MODULE).symbols.$$TARG; \
337	$(RM) $$MODSYMS.tmp $$MODSYMS.tmp.new $$MODSYMS.diff Nothing_to_remove
338
339
340$(OBJS_DIR):
341	-@mkdir -p $@ 2> /dev/null
342
343def.targ:		$(OBJS_DIR) $(ALL_TARGET)
344
345all.targ:		$(OBJS_DIR) $(ALL_TARGET)
346
347lint.targ:		$(OBJS_DIR) $(LINT_TARGET)
348
349modlintlib.targ:	$(OBJS_DIR) $(MOD_LINT_LIB)
350
351install.targ:		$(OBJS_DIR) $(INSTALL_TARGET)
352
353#
354# Support for Install.sh.
355#
356
357modlist:	$(MODLIST_DEPS)
358
359# paths relative to $(ROOT).
360RELMODULE = $(ROOTMODULE:$(ROOT)/%=%)
361RELCONF = $(ROOT_CONFFILE:$(ROOT)/%=%)
362RELLINK = $(ROOTLINK:$(ROOT)/%=%)
363RELUNIX = $(UNIX32_LINK:$(ROOT)/%=%)
364RELSOFTLINKS = $(ROOTSOFTLINKS:$(ROOT)/%=%)
365
366MODSRC:sh=		pwd
367
368#
369# Changes to this target may require corresponding changes to
370# Install.sh.
371# Don't issue a MOD entry if it's not in the install list.
372#
373$(MODLIST_DEPS): FRC
374	@case $@ in \
375	*32) \
376		class=32; \
377		relmodule=`dirname $(RELMODULE)`; \
378		rellink=`dirname $(RELLINK)`;; \
379	*64) \
380		class=64; \
381		relmodule=`dirname $(RELMODULE)`/$(SUBDIR64); \
382		rellink=`dirname $(RELLINK)`/$(SUBDIR64);; \
383	esac; \
384	if [ -z "$(THISIMPL)" ]; then \
385		impl=all; \
386	else \
387		impl=$(THISIMPL); \
388	fi; \
389	if [ -n "$(ROOTMODULE)" -a -n "$(INSTALL_TARGET)" ]; then \
390		if [ -z "$(MODULE)" ]; then \
391			module=`basename $(ROOTMODULE)`; \
392		else \
393			module=$(MODULE); \
394		fi; \
395		tinstall="$(INSTALL_TARGET)"; \
396		for t in $$tinstall; do \
397			if [ "$(ROOTMODULE)" = $$t ]; then \
398				echo MOD $$module $$relmodule \
399				    $$class $$impl $(MODSRC); \
400				break; \
401			fi \
402		done \
403	fi; \
404	if [ -n "$(CONF_SRCDIR)" ]; then \
405		tinstall="$(INSTALL_TARGET)"; \
406		for t in $$tinstall; do \
407			if [ $(ROOT_CONFFILE) = $$t ]; then \
408				echo CONF $(RELCONF) \
409				    $(MODSRC)/$(CONF_SRCDIR) $$impl $$module; \
410				break; \
411			fi \
412		done \
413	fi; \
414	if [ -n "$(ROOTLINK)" ]; then \
415		echo LINK $$relmodule $$module \
416		    $$rellink `basename $(RELLINK)` $$impl; \
417	fi; \
418	if [ -n "$(UNIX32_LINK)" ]; then \
419		echo SYMLINK $(SUBDIR64)/$(UNIX) \
420		    `dirname $(RELUNIX)` unix $$impl $$module; \
421	fi; \
422	trelsoftlinks="$(RELSOFTLINKS)"; \
423	for t in $$trelsoftlinks; do \
424		if [ $$class = 32 ]; then \
425			linkdir=`dirname $$t`; \
426		else \
427			linkdir=`dirname $$t`/$(SUBDIR64); \
428		fi; \
429		linkname=`basename $$t`; \
430		echo SYMLINK $(MODULE) $$linkdir $$linkname \
431		    $$impl $$module; \
432	done
433
434#
435#	Cleanliness is next to ...
436#
437clean.targ:
438	-$(RM) $(CLEANFILES) Nothing_to_remove
439
440clobber.targ:
441	-$(RM) $(CLOBBERFILES) Nothing_to_remove
442
443clean.lint.targ:
444	-$(RM) $(CLEANLINTFILES) Nothing_to_remove
445
446#
447#	Create fake lintlibs in the 64b dirs so
448#	global linting works
449#
450lint64:
451	@$(ECHO) $(MODULE) fake lints
452	@for dir in $(LINT64_DIRS); do \
453		if [ ! -d $$dir ]; then mkdir $$dir; fi \
454	done
455	@for file in $(LINT64_FILES); do \
456		if [ ! -f $$file ]; then touch $$file; fi \
457	done
458
459#
460#	In some places we also need to create fake lintlibs for 32b
461#	dirs so global linting works
462#
463lint32:
464	@$(ECHO) $(MODULE) fake lints
465	@for dir in $(LINT32_DIRS); do \
466		if [ ! -d $$dir ]; then mkdir $$dir; fi \
467	done
468	@for file in $(LINT32_FILES); do \
469		if [ ! -f $$file ]; then touch $$file; fi \
470	done
471
472FRC:
473