xref: /illumos-gate/usr/src/cmd/print/ppdmgr/Makefile (revision c81d47afd05baeb768e2f032636019b717899efd)
1*c81d47afSceastha#
2*c81d47afSceastha# CDDL HEADER START
3*c81d47afSceastha#
4*c81d47afSceastha# The contents of this file are subject to the terms of the
5*c81d47afSceastha# Common Development and Distribution License (the "License").
6*c81d47afSceastha# You may not use this file except in compliance with the License.
7*c81d47afSceastha#
8*c81d47afSceastha# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*c81d47afSceastha# or http://www.opensolaris.org/os/licensing.
10*c81d47afSceastha# See the License for the specific language governing permissions
11*c81d47afSceastha# and limitations under the License.
12*c81d47afSceastha#
13*c81d47afSceastha# When distributing Covered Code, include this CDDL HEADER in each
14*c81d47afSceastha# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*c81d47afSceastha# If applicable, add the following below this CDDL HEADER, with the
16*c81d47afSceastha# fields enclosed by brackets "[]" replaced with your own identifying
17*c81d47afSceastha# information: Portions Copyright [yyyy] [name of copyright owner]
18*c81d47afSceastha#
19*c81d47afSceastha# CDDL HEADER END
20*c81d47afSceastha#
21*c81d47afSceastha#
22*c81d47afSceastha# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23*c81d47afSceastha# Use is subject to license terms.
24*c81d47afSceastha#
25*c81d47afSceastha# ident	"%Z%%M%	%I%	%E% SMI"
26*c81d47afSceastha#
27*c81d47afSceastha
28*c81d47afSceasthaMANIFEST=		ppd-cache-update.xml
29*c81d47afSceasthaSVCMETHOD=		ppd-cache-update
30*c81d47afSceastha
31*c81d47afSceasthainclude		../Makefile.sp
32*c81d47afSceastha
33*c81d47afSceasthaROOTMANIFESTDIR=	$(ROOTSVCAPPLICATIONPRINT)
34*c81d47afSceastha$(ROOTMANIFEST):=	FILEMODE= 444
35*c81d47afSceastha
36*c81d47afSceasthaROOTVARLP=		$(ROOTVAR)/lp
37*c81d47afSceasthaROOTVARLPPPD=		$(ROOTVARLP)/ppd
38*c81d47afSceasthaROOTVARLPPPDCACHES=	$(ROOTVARLPPPD)/caches
39*c81d47afSceastha
40*c81d47afSceastha$(ROOTVARLP):=		OWNER= lp
41*c81d47afSceastha$(ROOTVARLP):=		DIRMODE= 775
42*c81d47afSceastha
43*c81d47afSceastha.KEEP_STATE:
44*c81d47afSceastha
45*c81d47afSceasthaall:
46*c81d47afSceasthainstall:	$(ROOTMANIFEST) $(ROOTSVCMETHOD) \
47*c81d47afSceastha		$(ROOTVARLP) $(ROOTVARLPPPD) $(ROOTVARLPPPDCACHES)
48*c81d47afSceasthacheck:		$(CHKMANIFEST)
49*c81d47afSceasthaclean:
50*c81d47afSceasthaclobber:
51*c81d47afSceasthalint:
52*c81d47afSceastha
53*c81d47afSceastha$(ROOTVARLP) $(ROOTVARLPPPD) $(ROOTVARLPPPDCACHES):
54*c81d47afSceastha	$(INS.dir)
55*c81d47afSceastha
56*c81d47afSceasthainclude		$(SRC)/cmd/Makefile.targ
57