Makefile revision 1
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus#
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# CDDL HEADER START
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus#
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# The contents of this file are subject to the terms of the
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# Common Development and Distribution License (the "License").
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# You may not use this file except in compliance with the License.
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus#
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# or http://www.opensolaris.org/os/licensing.
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# See the License for the specific language governing permissions
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# and limitations under the License.
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus#
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# When distributing Covered Code, include this CDDL HEADER in each
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# If applicable, add the following below this CDDL HEADER, with the
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# fields enclosed by brackets "[]" replaced with your own identifying
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# information: Portions Copyright [yyyy] [name of copyright owner]
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus#
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus# CDDL HEADER END
#
#
# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
#
include $(SRC)/Makefile.master
include ../Makefile.tools
SUBDIRS= \
Checks \
hgext \
Scm
PYSRCS = \
__init__.py
PYOBJS = $(PYSRCS:%.py=%.pyc)
PYTOPDIR = $(ROOTONBLDLIB)
PYMODDIR = onbld
all := TARGET = all
install := TARGET = install
clean := TARGET = clean
clobber := TARGET = clobber
include ../Makefile.python
.KEEP_STATE:
all: $(PYVERSOBJS) $(SUBDIRS)
install: all $(ROOTPYFILES) $(SUBDIRS)
clean: $(SUBDIRS)
clobber: clean pyclobber $(SUBDIRS)
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
FRC: