Makefile revision cdf0c1d55d9b3b6beaf994835440dfb01aef5cf0
246N/A#
246N/A# CDDL HEADER START
246N/A#
246N/A# The contents of this file are subject to the terms of the
246N/A# Common Development and Distribution License (the "License").
246N/A# You may not use this file except in compliance with the License.
246N/A#
246N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
246N/A# or http://www.opensolaris.org/os/licensing.
246N/A# See the License for the specific language governing permissions
246N/A# and limitations under the License.
246N/A#
246N/A# When distributing Covered Code, include this CDDL HEADER in each
246N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
246N/A# If applicable, add the following below this CDDL HEADER, with the
246N/A# fields enclosed by brackets "[]" replaced with your own identifying
246N/A# information: Portions Copyright [yyyy] [name of copyright owner]
246N/A#
246N/A# CDDL HEADER END
246N/A#
1365N/A
246N/A#
246N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
246N/A# Use is subject to license terms.
246N/A#
1365N/A# ident "%Z%%M% %I% %E% SMI"
618N/A#
246N/A
246N/Ainclude $(SRC)/Makefile.master
246N/Ainclude ../../Makefile.tools
844N/A
1365N/APYSRCS= \
1258N/A CStyle.py \
246N/A Cddl.py \
246N/A Comments.py \
246N/A Copyright.py \
246N/A DbLookups.py \
246N/A HdrChk.py \
246N/A JStyle.py \
246N/A Keywords.py \
246N/A ProcessCheck.py \
246N/A Rti.py \
246N/A __init__.py
1365N/A
1365N/APYOBJS = $(PYSRCS:%.py=%.pyc)
1365N/A
1365N/APYFILES= $(PYSRCS) $(PYOBJS)
1365N/A
246N/AROOTONBLDCHECKSFILES= $(PYFILES:%=$(ROOTONBLDLIBPY)/onbld/Checks/%)
246N/A$(ROOTONBLDCHECKSFILES) := FILEMODE = 0444
1365N/A
1365N/A.KEEP_STATE:
246N/A
1365N/Aall: $(PYOBJS)
1365N/A
1365N/Ainstall: $(ROOTONBLDCHECKSFILES)
1365N/A
1365N/Aclean:
246N/A $(RM) $(PYOBJS)
1365N/A
1365N/A$(ROOTONBLDLIBPY)/onbld/Checks/%: %
1365N/A $(INS.pyfile)
1365N/A
1365N/Ainclude ../../Makefile.targ
246N/A