Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
1516N/A#
49N/A# CDDL HEADER START
49N/A#
49N/A# The contents of this file are subject to the terms of the
49N/A# Common Development and Distribution License, Version 1.0 only
49N/A# (the "License"). You may not use this file except in compliance
49N/A# with the License.
49N/A#
49N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
49N/A# or http://www.opensolaris.org/os/licensing.
49N/A# See the License for the specific language governing permissions
49N/A# and limitations under the License.
49N/A#
49N/A# When distributing Covered Code, include this CDDL HEADER in each
49N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
49N/A# If applicable, add the following below this CDDL HEADER, with the
49N/A# fields enclosed by brackets "[]" replaced with your own identifying
49N/A# information: Portions Copyright [yyyy] [name of copyright owner]
49N/A#
49N/A# CDDL HEADER END
49N/A#
49N/A#
49N/A#ident "%Z%%M% %I% %E% SMI"
3158N/A#
49N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
49N/A# Use is subject to license terms.
49N/A#
49N/A# cmd/chmod/Makefile
49N/A#
49N/A
49N/APROG= chmod
1050N/AOBJS= $(PROG).o common.o
2639N/ASRCS= $(OBJS:%.o=%.c)
1507N/A
96N/APOFILES= $(OBJS:%.o=%.po)
1281N/A
1050N/Ainclude ../Makefile.cmd
1507N/A
1050N/ACFLAGS += $(CCVERBOSE)
1507N/A
49N/ACPPFLAGS += -D_FILE_OFFSET_BITS=64
49N/A
49N/ALINTFLAGS += -erroff=E_NAME_DEF_NOT_USED2
1846N/A
1846N/APOFILE= chmod_cmd.po
51N/AXGETFLAGS= -a -x chmod.xcl
2639N/A
96N/A.KEEP_STATE:
237N/A
237N/Aall: $(PROG)
1507N/A
237N/A$(PROG): $(OBJS)
237N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
462N/A $(POST_PROCESS)
462N/A
462N/A$(POFILE): $(POFILES)
237N/A $(RM) $@
237N/A cat $(POFILES) > $@
462N/A
237N/Ainstall: all $(ROOTPROG)
237N/A
237N/Aclean:
237N/A $(RM) $(OBJS)
237N/A
237N/Alint: lint_SRCS
583N/A
136N/Ainclude ../Makefile.targ
96N/A