xref: /illumos-gate/usr/src/uts/intel/sys/Makefile (revision 79033acb)
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 2006 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25# ident	"%Z%%M%	%I%	%E% SMI"
26#
27
28include ../../../Makefile.master
29
30# NOTE: hrtcntl.h and hrtsys.h are present in this directory so that the
31#	hrtsys system call can be built to facilitate transportability of
32#	stock SVr4 programs.  Every effort is to be made to prevent objects
33#	from being built, so these headers are not exported (installed).
34
35HDRS	=			\
36	archsystm.h		\
37	asm_linkage.h		\
38	bootconf.h		\
39	bootregs.h		\
40	bootsvcs.h		\
41	controlregs.h		\
42	cpu.h			\
43	ddi_isa.h		\
44	debugreg.h		\
45	dnet.h			\
46	fasttrap_isa.h		\
47	fp.h			\
48	frame.h			\
49	immu.h			\
50	inline.h		\
51	kd.h			\
52	kdi_machimpl.h		\
53	machelf.h		\
54	machlock.h		\
55	machsig.h		\
56	machtypes.h		\
57	mc.h			\
58	mc_amd.h		\
59	mca_amd.h		\
60	mca_x86.h		\
61	memtest.h		\
62	mii.h			\
63	miipriv.h		\
64	mmu.h			\
65	mutex_impl.h		\
66	obpdefs.h		\
67	old_procfs.h		\
68	pcb.h			\
69	privregs.h		\
70	procfs_isa.h		\
71	prom_emul.h		\
72	prom_isa.h		\
73	prom_plat.h		\
74	promif.h		\
75	promimpl.h		\
76	psw.h			\
77	pte.h			\
78	reg.h			\
79	regset.h		\
80	segment.h		\
81	segments.h		\
82	spl.h			\
83	stack.h			\
84	stat_impl.h		\
85	synch32.h		\
86	sysconfig_impl.h	\
87	sysi86.h		\
88	trap.h			\
89	traptrace.h		\
90	tss.h			\
91	ucontext.h		\
92	utrap.h			\
93	vmparam.h		\
94	x86_archext.h
95
96CLOSEDHDRS = \
97	sbpro.h
98
99SUBHDRS	=			\
100	dktp/mscsi.h
101
102FSHDRS =			\
103	seg_xmem.h		\
104	xmem.h
105
106ROOTDIR=	$(ROOT)/usr/include/sys
107SCSIDIR=	$(ROOTDIR)/scsi
108SCSIDIRS=	$(SCSIDIR) $(SCSIDIR)/conf $(SCSIDIR)/generic \
109		$(SCSIDIR)/impl $(SCSIDIR)/targets
110DKTPDIR=	$(ROOTDIR)/dktp
111DKTPDIRS=	$(DKTPDIR)
112ROOTFSDIR=	$(ROOTDIR)/fs
113ROOTDIRS=	$(ROOTDIR) $(ROOTFSDIR)
114
115ROOTHDRS= $(HDRS:%=$(ROOTDIR)/%) $(SUBHDRS:%=$(ROOTDIR)/%)
116$(CLOSED_BUILD)ROOTHDRS += $(CLOSEDHDRS:%=$(ROOTDIR)/%)
117
118ROOTFSHDRS= $(FSHDRS:%=$(ROOTDIR)/fs/%)
119
120CHECKHDRS= 			\
121	$(HDRS:%.h=%.check)	\
122	$(SUBHDRS:%.h=%.check)	\
123	$(FSHDRS:%.h=fs/%.check)
124
125$(CLOSED_BUILD)CHECKHDRS += $(CLOSEDHDRS:%.h=$(CLOSED)/uts/intel/sys/%.check)
126
127# install rules
128$(ROOTDIR)/%: %
129	$(INS.file)
130
131$(ROOTDIR)/%:	$(CLOSED)/uts/intel/sys/%
132	$(INS.file)
133
134.KEEP_STATE:
135
136.PARALLEL: $(CHECKHDRS) $(ROOTHDRS) $(ROOTFSHDRS)
137
138install_h: $(ROOTDIRS) .WAIT $(ROOTHDRS) $(ROOTFSHDRS)
139
140$(ROOTDIRS):
141	$(INS.dir)
142
143check:	$(CHECKHDRS)
144