10Sstevel@tonic-gate# 20Sstevel@tonic-gate# CDDL HEADER START 30Sstevel@tonic-gate# 40Sstevel@tonic-gate# The contents of this file are subject to the terms of the 5*2660Sjacobs# Common Development and Distribution License (the "License"). 6*2660Sjacobs# You may not use this file except in compliance with the License. 70Sstevel@tonic-gate# 80Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate# See the License for the specific language governing permissions 110Sstevel@tonic-gate# and limitations under the License. 120Sstevel@tonic-gate# 130Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate# 190Sstevel@tonic-gate# CDDL HEADER END 200Sstevel@tonic-gate# 21*2660Sjacobs 22*2660Sjacobs# 23*2660Sjacobs# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 24*2660Sjacobs# Use is subject to license terms. 250Sstevel@tonic-gate# 260Sstevel@tonic-gate# ident "%Z%%M% %I% %E% SMI" 270Sstevel@tonic-gate# 28*2660Sjacobs 290Sstevel@tonic-gate# 300Sstevel@tonic-gate# cmd/lp/lib/Makefile 310Sstevel@tonic-gate# 320Sstevel@tonic-gate 330Sstevel@tonic-gateSUBDIRS = \ 340Sstevel@tonic-gate access \ 350Sstevel@tonic-gate class \ 360Sstevel@tonic-gate filters \ 370Sstevel@tonic-gate forms \ 380Sstevel@tonic-gate lp \ 390Sstevel@tonic-gate msgs \ 400Sstevel@tonic-gate oam \ 410Sstevel@tonic-gate requests\ 420Sstevel@tonic-gate secure \ 430Sstevel@tonic-gate printers\ 440Sstevel@tonic-gate users \ 450Sstevel@tonic-gate papi 460Sstevel@tonic-gate 470Sstevel@tonic-gate 480Sstevel@tonic-gateall := TARGET= all 490Sstevel@tonic-gateinstall := TARGET= install 500Sstevel@tonic-gateclean := TARGET= clean 510Sstevel@tonic-gateclobber := TARGET= clobber 520Sstevel@tonic-gatelint := TARGET= lint 530Sstevel@tonic-gatestrip := TARGET= strip 540Sstevel@tonic-gatecatalog := TARGET= catalog 550Sstevel@tonic-gate 560Sstevel@tonic-gate.KEEP_STATE: 570Sstevel@tonic-gate 580Sstevel@tonic-gateall install: $(SUBDIRS) 590Sstevel@tonic-gate 600Sstevel@tonic-gateclean lint: $(SUBDIRS) 610Sstevel@tonic-gate 620Sstevel@tonic-gateclobber: $(SUBDIRS) local_clobber 630Sstevel@tonic-gate 640Sstevel@tonic-gatestrip: 650Sstevel@tonic-gate 660Sstevel@tonic-gatelocal_clobber: 670Sstevel@tonic-gate $(RM) $(CLOBBERFILES) 680Sstevel@tonic-gate 690Sstevel@tonic-gatecatalog: $(SUBDIRS) 700Sstevel@tonic-gate 710Sstevel@tonic-gate$(SUBDIRS): FRC 720Sstevel@tonic-gate @cd $@; pwd; $(MAKE) $(TARGET) 730Sstevel@tonic-gate 740Sstevel@tonic-gateFRC: 75