xref: /titanic_41/usr/src/cmd/init/Makefile (revision 8eea8e29cc4374d1ee24c25a07f45af132db3499)
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, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28
29PROG= init
30ROOTFS_PROG= $(PROG)
31
32DFLTD= $(ROOTETC)/default
33
34ROOTDFLTPROG = $(PROG:%=$(DFLTD)/%)
35$(ROOTDFLTPROG) := FILEMODE = $(LIBFILEMODE)
36
37include ../Makefile.cmd
38
39OWNER = root
40GROUP = sys
41
42LDLIBS_LIST = -lpam -lbsm -lcontract -z lazyload -lscf
43lint := LDLIBS_LIST = -lpam -lbsm -lcontract -lscf
44
45LDLIBS += $(LDLIBS_LIST)
46LINTFLAGS += -erroff=E_NAME_USED_NOT_DEF2
47CLOBBERFILES= $(STATIC)
48
49.KEEP_STATE:
50
51all: $(ROOTFS_PROG) $(PROG).dfl
52
53install: all $(PROG).dfl $(ROOTDFLTPROG) $(ROOTSBINPROG)
54	$(RM) $(ROOTETCPROG)
55	$(RM) $(ROOTUSRSBINPROG)
56	$(RM) $(ROOTETC)/telinit
57	$(SYMLINK) ../sbin/$(PROG) $(ROOTETCPROG)
58	$(SYMLINK) ../../sbin/$(PROG) $(ROOTUSRSBINPROG)
59	$(SYMLINK) ../sbin/$(PROG) $(ROOTETC)/telinit
60	$(RM) $(ROOTETC)/TIMEZONE
61	cd $(ROOTETC); $(SYMLINK) default/init TIMEZONE
62
63$(DFLTD)/% : %.dfl
64	$(INS.rename)
65
66test:
67	rtest $(PROG)
68
69clean:
70
71lint:	lint_PROG
72
73include ../Makefile.targ
74