Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
110N/A#
110N/A# CDDL HEADER START
110N/A#
110N/A# The contents of this file are subject to the terms of the
110N/A# Common Development and Distribution License (the "License").
110N/A# You may not use this file except in compliance with the License.
110N/A#
110N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
110N/A# or http://www.opensolaris.org/os/licensing.
110N/A# See the License for the specific language governing permissions
110N/A# and limitations under the License.
110N/A#
110N/A# When distributing Covered Code, include this CDDL HEADER in each
110N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
110N/A# If applicable, add the following below this CDDL HEADER, with the
110N/A# fields enclosed by brackets "[]" replaced with your own identifying
110N/A# information: Portions Copyright [yyyy] [name of copyright owner]
110N/A#
110N/A# CDDL HEADER END
110N/A#
2865N/A#
110N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
110N/A# Use is subject to license terms.
110N/A#
110N/A# cmd/lp/client/conv_fix/Makefile
110N/A#
110N/A
110N/Ainclude ../Makefile.sp
110N/A
844N/APROG= conv_fix
844N/A
110N/ASRCS= $(PROG).c
1273N/A
110N/AOBJS= $(SRCS:.c=.o)
110N/A
110N/AROOTLIBPRINTPROG= $(PROG:%=$(ROOTLIBPRINT)/%)
110N/A
110N/AFILEMODE= 0555
2865N/A
2865N/ACPPFLAGS += -I$(NPRTINC)
110N/A
110N/ACERRWARN += -_gcc=-Wno-implicit-function-declaration
181N/A
110N/A.KEEP_STATE:
110N/A
110N/Aall: $(PROG)
110N/A
110N/Ainstall: all $(ROOTLIBPRINTPROG)
110N/A
110N/A$(ROOTLIBPRINT)/%: %
110N/A $(INS.file)
110N/A
110N/Astrip:
110N/A $(STRIP) $(PROG)
110N/A
110N/Alint:
110N/A $(LINT.c) $(PROG).c $(LDLIBS)
110N/A
110N/Acstyle:
110N/A cstyle $(SRCS)
110N/A
110N/A_msg:
110N/A @echo "Messages are made in usr/src/cmd/print"
110N/A
110N/Aclean:
110N/A $(RM) $(OBJS)
110N/A
110N/Aclobber: clean
110N/A -$(RM) $(PROG) $(CLOBBERFILES)
110N/A