Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# CDDL HEADER START
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# The contents of this file are subject to the terms of the
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# Common Development and Distribution License, Version 1.0 only
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# (the "License"). You may not use this file except in compliance
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# with the License.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# or http://www.opensolaris.org/os/licensing.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# See the License for the specific language governing permissions
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# and limitations under the License.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# When distributing Covered Code, include this CDDL HEADER in each
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# If applicable, add the following below this CDDL HEADER, with the
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# fields enclosed by brackets "[]" replaced with your own identifying
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# information: Portions Copyright [yyyy] [name of copyright owner]
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# CDDL HEADER END
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#ident "%Z%%M% %I% %E% SMI"
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# Copyright (c) 1989, 2001 by Sun Microsystems, Inc.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# All rights reserved.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncPROG= profile .login system
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncPROGSKEL= local.login local.profile local.cshrc
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncinclude ../Makefile.cmd
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncROOTETCSKEL= $(ROOTETC)/skel
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncROOTETCSKELPROG= $(PROGSKEL:%=$(ROOTETCSKEL)/%)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncFILEMODE= 0644
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncOWNER= root
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncGROUP= sys
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync.login: login.csh
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync $(RM) .login; $(CP) login.csh .login
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync.KEEP_STATE:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncall: $(PROG) $(PROGSKEL)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync$(ROOTETCSKEL)/%: %
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync $(INS.file)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync$(ROOTETCSKEL):
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync $(INS.dir)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsyncinstall: all $(ROOTETCSKEL) $(ROOTETCPROG) $(ROOTETCSKELPROG)
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsyncclean:
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncclobber:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync $(RM) .login
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsynclint:
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync