xref: /illumos-gate/usr/src/uts/intel/config/Makefile (revision 6a634c9d)
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# uts/intel/config/Makefile
23# Copyright 2010 Nexenta Systems, Inc.  All rights reserved.
24# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27#	This makefile drives the production of the kernel configuration files.
28#
29#	intel architecture dependent
30#
31
32#
33#	Path to the base of the uts directory tree (usually /usr/src/uts).
34#
35UTSBASE	= ../..
36
37#
38#	Include common rules.
39#
40include $(UTSBASE)/intel/Makefile.intel
41
42#
43#	Define the module and object file sets.
44#
45SRCDIR		= $(UTSBASE)/intel/os
46PATH2INST	= path_to_inst
47CONFIGFILES	= name_to_major minor_perm driver_aliases name_to_sysnum \
48		  driver_classes dacf.conf $(PATH2INST) mach
49SECCONFIG	= device_policy priv_names
50BOOTIMAGE	= illumos.xpm
51BOOTENVRC	= bootenv.rc
52DEVMASTER	= master
53FILEMODE	= 644
54ROOTETC		= $(ROOT)/etc
55ROOTETCSEC	= $(ROOTETC)/security
56ROOTBOOT	= $(ROOT)/boot
57BOOTSOLARIS	= $(ROOTBOOT)/solaris
58BOOTDEVICEDB	= $(BOOTSOLARIS)/devicedb
59
60SRCFILES	= $(CONFIGFILES:%=$(SRCDIR)/%) $(SECCONFIG:%=$(SRCDIR)/%)
61SRCFILES	+= $(BOOTIMAGE:%=$(SRCDIR)/%)
62SRCFILES	+= $(BOOTENVRC:%=$(SRCDIR)/%)
63SRCFILES	+= $(DEVMASTER:%=$(SRCDIR)/%)
64ROOTCONFIGFILES	= $(CONFIGFILES:%=$(ROOTETC)/%) $(SECCONFIG:%=$(ROOTETCSEC)/%)
65ROOTCONFIGFILES	+= $(BOOTIMAGE:%=$(ROOTBOOT)/%)
66ROOTCONFIGFILES	+= $(BOOTENVRC:%=$(BOOTSOLARIS)/%)
67ROOTCONFIGFILES	+= $(DEVMASTER:%=$(BOOTDEVICEDB)/%)
68
69#
70#	Default build targets.
71#
72.KEEP_STATE:
73
74def all: $(SRCFILES)
75
76install: all $(ROOTCONFIGFILES)
77
78#
79#	The ROOTETC directory is made by ../../../Targetdirs
80#	through the rootdirs target in ../../../Makefile.
81#
82#	etc/path_to_inst has permissions different from the other config files
83#
84$(ROOTETC)/$(PATH2INST):= FILEMODE=444
85
86$(ROOTETC)/%: $(SRCDIR)/%
87	$(INS.file)
88
89$(ROOTETCSEC)/%: $(SRCDIR)/%
90	$(INS.file)
91
92$(ROOTBOOT):
93	$(INS) -s -d -m $(DIRMODE) $@
94
95$(ROOTBOOT)/%: $(ROOTBOOT) $(SRCDIR)/%
96	$(INS.file)
97
98$(BOOTSOLARIS):
99	$(INS) -s -d -m $(DIRMODE) $@
100
101$(BOOTSOLARIS)/%: $(BOOTSOLARIS) $(SRCDIR)/%
102	$(INS.file)
103
104$(BOOTDEVICEDB):
105	$(INS) -s -d -m $(DIRMODE) $@
106
107$(BOOTDEVICEDB)/%: $(BOOTDEVICEDB) $(SRCDIR)/%
108	$(INS.file)
109
110$(SRCDIR)/priv_names: $(PRIVS_DEF) $(PRIVS_AWK)
111	$(NAWK) -f $(PRIVS_AWK) < $(PRIVS_DEF) -v pnamesfile=$@
112
113clean clobber lint:
114
115#
116#	No lints, so keep the clobber and clean targets reasonable.
117#
118CLEANLINTFILES	= Nothing_to_remove
119CLEANFILES	= Nothing_to_remove
120CLOBBERFILES	= Nothing_to_remove
121
122#
123#	Include common targets.
124#
125include $(UTSBASE)/intel/Makefile.targ
126