Makefile revision bfed486ad8de8b8ebc6345a8e10accae08bf2f45
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# CDDL HEADER START
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# The contents of this file are subject to the terms of the
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Common Development and Distribution License (the "License").
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# You may not use this file except in compliance with the License.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# or http://www.opensolaris.org/os/licensing.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# See the License for the specific language governing permissions
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# and limitations under the License.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# When distributing Covered Code, include this CDDL HEADER in each
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# If applicable, add the following below this CDDL HEADER, with the
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# fields enclosed by brackets "[]" replaced with your own identifying
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# information: Portions Copyright [yyyy] [name of copyright owner]
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# CDDL HEADER END
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Use is subject to license terms.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyinclude $(SRC)/Makefile.master
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyinclude ../../Makefile.tools
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren KennedyPYSRCS= \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy CStyle.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy Cddl.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy CmtBlk.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy Comments.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy Copyright.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy DbLookups.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy HdrChk.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy JStyle.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy Keywords.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy Mapfile.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy ProcessCheck.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy Rti.py \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy __init__.py
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren KennedyPYOBJS = $(PYSRCS:%.py=%.pyc)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren KennedyPYFILES= $(PYSRCS) $(PYOBJS)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren KennedyROOTONBLDCHECKSFILES= $(PYFILES:%=$(ROOTONBLDLIBPY)/onbld/Checks/%)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy$(ROOTONBLDCHECKSFILES) := FILEMODE = 0444
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy.KEEP_STATE:
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyall: $(PYOBJS)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyinstall: $(ROOTONBLDCHECKSFILES)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyclean:
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy $(RM) $(PYOBJS)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy$(ROOTONBLDLIBPY)/onbld/Checks/%: %
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy $(INS.pyfile)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyinclude ../../Makefile.targ
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy