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