xref: /illumos-gate/usr/src/uts/i86pc/Makefile (revision 79fb40ac)
17c478bd9Sstevel@tonic-gate#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
588543b5cSkrishna# Common Development and Distribution License (the "License").
688543b5cSkrishna# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
207c478bd9Sstevel@tonic-gate#
217c478bd9Sstevel@tonic-gate#
227adfacf3Sml# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate# Use is subject to license terms.
247c478bd9Sstevel@tonic-gate#
25fe7a23c8SAndy Fiddaman# Copyright 2019 OmniOS Community Edition (OmniOSce) Association.
26fe7a23c8SAndy Fiddaman#
277c478bd9Sstevel@tonic-gate#	This makefile drives the production of all implementation architecture
287c478bd9Sstevel@tonic-gate#	dependent modules for the i86pc architecture.
297c478bd9Sstevel@tonic-gate#
307c478bd9Sstevel@tonic-gate
317c478bd9Sstevel@tonic-gateUTSBASE = ..
327c478bd9Sstevel@tonic-gate
337c478bd9Sstevel@tonic-gateinclude Makefile.i86pc
347c478bd9Sstevel@tonic-gate
357c478bd9Sstevel@tonic-gate#
367c478bd9Sstevel@tonic-gate#
377c478bd9Sstevel@tonic-gate#
387c478bd9Sstevel@tonic-gatedef		:=	TARGET= def
397c478bd9Sstevel@tonic-gateall		:=	TARGET= all
407c478bd9Sstevel@tonic-gateinstall		:=	TARGET= install
41a546187aSedpinstall_h	:=	TARGET= install_h
427c478bd9Sstevel@tonic-gateclean		:=	TARGET= clean
437c478bd9Sstevel@tonic-gateclobber		:=	TARGET= clobber
447c478bd9Sstevel@tonic-gatecheck		:=	TARGET= check
457c478bd9Sstevel@tonic-gate
467c478bd9Sstevel@tonic-gate.KEEP_STATE:
477c478bd9Sstevel@tonic-gate
48*79fb40acSRichard Lowe.PARALLEL:	$(PARALLEL_KMODS) $(XMODS)
497c478bd9Sstevel@tonic-gate
507aec1d6eScindiINITIAL_TARGETS = \
517aec1d6eScindi	genassym \
527aec1d6eScindi	unix \
537aec1d6eScindi	cpu/scripts
547aec1d6eScindi
55fe7a23c8SAndy Fiddamandef all clean clobber: setup genassym unix .WAIT \
56c0e7977aSJosef 'Jeff' Sipek	$(KMODS) $(XMODS) $(IMPLEMENTATIONS)
577c478bd9Sstevel@tonic-gate
587aec1d6eScindiinstall: install_platforms setup genassym unix .WAIT \
59c0e7977aSJosef 'Jeff' Sipek	$(KMODS) $(XMODS) $(IMPLEMENTATIONS)
60fb9f9b97Skupfer
617c478bd9Sstevel@tonic-gategenassym unix $(KMODS):	FRC
62fb9f9b97Skupfer	@cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
637c478bd9Sstevel@tonic-gate
647aec1d6eScindisetup: FRC
654156fc34Sgavinm	@cd cpu/scripts; pwd; $(MAKE) $(TARGET)
667aec1d6eScindi
67eb0cc229Sedp$(IMPLEMENTATIONS):     FRC
68eb0cc229Sedp	@cd $@; pwd; THISIMPL=$@ $(MAKE) $(NO_STATE) $(TARGET)
69eb0cc229Sedp
707c478bd9Sstevel@tonic-gate$(XMODS):	FRC
713aa6c130SRichard Lowe	cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
72fb9f9b97Skupfer
73eb0cc229Sedpinstall_h check:	$(IMPLEMENTATIONS) FRC
747c478bd9Sstevel@tonic-gate	@cd sys; pwd; $(MAKE) $(TARGET)
757c478bd9Sstevel@tonic-gate
767c478bd9Sstevel@tonic-gate#
777c478bd9Sstevel@tonic-gate# Definitions for the /platform directory aliases.
787c478bd9Sstevel@tonic-gate# Currently none for i86pc.
797c478bd9Sstevel@tonic-gate#
807c478bd9Sstevel@tonic-gatePLAT_LINKS	=
817c478bd9Sstevel@tonic-gate
827c478bd9Sstevel@tonic-gate#
837c478bd9Sstevel@tonic-gate# Make the /platform directories.  This is hardwired here because
847c478bd9Sstevel@tonic-gate# the first stage of the project (KBI) only implements the userland
857c478bd9Sstevel@tonic-gate# changes, but the only reasonable place to record the aliases is
867c478bd9Sstevel@tonic-gate# here in kernel land.
877c478bd9Sstevel@tonic-gate#
887c478bd9Sstevel@tonic-gateinstall_platforms:	$(ROOT_PSM_DIR) $(USR_PSM_DIR) \
897c478bd9Sstevel@tonic-gate			$(ROOT_PLAT_LINKS) $(USR_PLAT_LINKS) \
907c478bd9Sstevel@tonic-gate			$(OEM_USR_PLAT_LINKS)
917c478bd9Sstevel@tonic-gate
927c478bd9Sstevel@tonic-gateinclude ../Makefile.targ
937c478bd9Sstevel@tonic-gate
947c478bd9Sstevel@tonic-gate#
957c478bd9Sstevel@tonic-gate# Cross-reference customization: build a cross-reference over all of the
967c478bd9Sstevel@tonic-gate# i86pc-related directories.
977c478bd9Sstevel@tonic-gate#
98c0e7977aSJosef 'Jeff' SipekXRDIRS	= ../i86pc ../intel ../common
999b3a7842SCheng Sean Ye
1007c478bd9Sstevel@tonic-gateXRPRUNE	= sun4u sun4
1017c478bd9Sstevel@tonic-gate
1020fb96ba1SBill Sommerfeldinclude ../../Makefile.xref
103