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