Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
6324N/A#
6324N/A# CDDL HEADER START
6324N/A#
6324N/A# The contents of this file are subject to the terms of the
6324N/A# Common Development and Distribution License, Version 1.0 only
6324N/A# (the "License"). You may not use this file except in compliance
6324N/A# with the License.
6324N/A#
6324N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
6324N/A# or http://www.opensolaris.org/os/licensing.
6324N/A# See the License for the specific language governing permissions
6324N/A# and limitations under the License.
6324N/A#
6324N/A# When distributing Covered Code, include this CDDL HEADER in each
6324N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6324N/A# If applicable, add the following below this CDDL HEADER, with the
6324N/A# fields enclosed by brackets "[]" replaced with your own identifying
6324N/A# information: Portions Copyright [yyyy] [name of copyright owner]
6324N/A#
6324N/A# CDDL HEADER END
6324N/A#
6324N/A#
6324N/A# ident "%Z%%M% %I% %E% SMI"
6324N/A#
6324N/A# Copyright (c) 1994 by Sun Microsystems, Inc.
6324N/A# All Rights Reserved
6324N/A#
6324N/A# cmd/lp/client/cancel/Makefile
6324N/A#
6324N/A
6324N/Ainclude ../Makefile.sp
6324N/A
6324N/APROG= cancel
6324N/A
6324N/ASRCS= cancel.c cancel_list.c
6324N/A
6324N/AOBJS= $(SRCS:.c=.o)
6324N/A
6324N/AROOTBINPROG= $(PROG:%=$(ROOTBIN)/%)
6324N/AROOTUSRBINSYMLINK= $(ROOTUSRUCB)/lprm
6324N/A
6324N/AFILEMODE= 04511
6324N/AOWNER= root
6324N/A
6324N/ACPPFLAGS += -I. -I$(NPRTINC) #$(CPPFLAGS.master)
6324N/ALDLIBS += $(LIBNPRT)
6324N/A
6324N/A.KEEP_STATE:
6324N/A
6324N/Aall: $(PROG)
6324N/A
6324N/A$(PROG): $(OBJS)
6324N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
6324N/A $(POST_PROCESS)
6324N/A
6324N/Ainstall: all $(ROOTBIN) $(ROOTBINPROG) $(ROOTUSRBINSYMLINK)
6324N/A
6324N/A$(ROOTBIN):
6324N/A $(INS.dir)
6324N/A
$(ROOTUSRBINSYMLINK):
$(RM) $@; $(SYMLINK) ../bin/$(PROG) $@
strip:
$(STRIP) $(PROG)
lint:
$(LINT.c) $(SRCS) $(LDLIBS)
cstyle:
cstyle $(SRCS)
_msg:
@echo "Messages are made in usr/src/cmd/print"
clean:
$(RM) $(OBJS)
clobber: clean
-$(RM) $(PROG) $(CLOBBERFILES)