Makefile revision 6124874e2cec65f2e7a974b3833b05dbf2a7d905
393N/A#
393N/A# CDDL HEADER START
393N/A#
393N/A# The contents of this file are subject to the terms of the
393N/A# Common Development and Distribution License (the "License").
393N/A# You may not use this file except in compliance with the License.
393N/A#
393N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
393N/A# or http://www.opensolaris.org/os/licensing.
393N/A# See the License for the specific language governing permissions
393N/A# and limitations under the License.
393N/A#
393N/A# When distributing Covered Code, include this CDDL HEADER in each
393N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
393N/A# If applicable, add the following below this CDDL HEADER, with the
393N/A# fields enclosed by brackets "[]" replaced with your own identifying
393N/A# information: Portions Copyright [yyyy] [name of copyright owner]
393N/A#
393N/A# CDDL HEADER END
393N/A#
393N/A#
393N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
844N/A# Use is subject to license terms.
393N/A#
393N/A
395N/Ainclude ../../Makefile.cmd
393N/A
393N/ASBINPROG = print-service
393N/ABINPROG = desktop-print-management-applet
618N/ALPBINLINKS = lp lpstat cancel enable disable
393N/ALPRBINLINKS = lpr lpq lprm lpc
393N/ADESKTOPLINKS = desktop-print-management desktop-print-management-prefs
844N/ABINLINKS = $(LPBINLINKS) $(LPRBINLINKS) $(DESKTOPLINKS)
844N/ASBINLINKS = accept reject lpmove lpadmin
393N/A
1258N/AROOTUSRSBINPROG = $(SBINPROG:%=$(ROOTUSRSBIN)/%)
393N/AROOTUSRBINPROG = $(BINPROG:%=$(ROOTBIN)/%)
393N/AROOTUSRBINLINKS = $(BINLINKS:%=$(ROOTBIN)/%)
393N/AROOTUSRSBINLINKS = $(SBINLINKS:%=$(ROOTUSRSBIN)/%)
393N/A
393N/AFILEMODE = 0555
393N/AOWNER = root
393N/A
393N/A$(ROOTUSRBINLINKS):
393N/A $(RM) $@; $(SYMLINK) ../sbin/$(SBINPROG) $@
393N/A
393N/A$(ROOTUSRSBINLINKS):
393N/A $(RM) $@; $(SYMLINK) $(SBINPROG) $@
393N/A
393N/A.KEEP_STATE:
393N/A
all check clean clobber lint:
install: $(ROOTUSRSBINPROG) $(ROOTUSRBINPROG) $(ROOTUSRBINLINKS) $(ROOTUSRSBINLINKS)