xref: /illumos-gate/usr/src/lib/libc/i386/etc/Makefile (revision 581cede61ac9c14d8d4ea452562a567189eead78)
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# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
22# Use is subject to license terms.
23#
24# Makefile for libc-related x86 flarcreate precreation scripts
25#
26#
27# libc/i386_etc/Makefile
28
29include ../../../../Makefile.master
30
31FLASHPRESRC=	caplib.ksh
32FLASHPREPROG=	$(FLASHPRESRC:%.ksh=%)
33
34all:=           TARGET= all
35install:=       TARGET= install
36clean:=         TARGET= clean
37clobber:=       TARGET= clobber
38lint:=          TARGET= lint
39
40ROOTETC=	$(ROOT)/etc
41ETCFLASHD=	$(ROOTETC)/flash
42ETCFLASHPREC=	$(ROOTETC)/flash/precreation
43ETCFLASHPREE=	$(ROOTETC)/flash/preexit
44ETCFLASHPOSTC=	$(ROOTETC)/flash/postcreation
45
46DIRS=		$(ETCFLASHPREC) $(ETCFLASHPREE) $(ETCFLASHPOSTC)
47
48ETCFLASHPREPROG=	$(FLASHPREPROG:%=$(ETCFLASHPREC)/%)
49
50$(ETCFLASHD) :=	DIRMODE=	755
51$(ETCFLASHPREC) :=	DIRMODE=	700
52$(ETCFLASHPREE) :=	DIRMODE=	700
53$(ETCFLASHPOSTC) :=	DIRMODE=	700
54$(ETCFLASHPREPROG) :=	FILEMODE=       0500
55
56.KEEP_STATE:
57
58all: $(FLASHPREPROG)
59
60install: all .WAIT $(DIRS) .WAIT $(ETCFLASHPREPROG)
61
62cstyle:
63
64lint:
65
66$(FLASHPREPROG): $(FLASHPRESRC)
67	$(CP) $@.ksh $@
68
69$(DIRS):
70	$(INS.dir)
71
72$(ETCFLASHPREC)/% : %
73	$(INS.file)
74
75$(ETCFLASHPREE)/% : %
76	$(INS.file)
77
78$(ETCFLASHPOSTC)/% : %
79	$(INS.file)
80
81clean:
82	$(RM) $(FLASHPREPROG)
83
84clobber: clean
85	$(RM) $(ETCFLASHPREPROG)
86