xref: /titanic_50/usr/src/tools/onbld/Scm/Makefile (revision 00ff221220d90f65da9bfe3ccabcaeb7aa227a26)
1cdf0c1d5Smjnelson#
2cdf0c1d5Smjnelson# CDDL HEADER START
3cdf0c1d5Smjnelson#
4cdf0c1d5Smjnelson# The contents of this file are subject to the terms of the
5cdf0c1d5Smjnelson# Common Development and Distribution License (the "License").
6cdf0c1d5Smjnelson# You may not use this file except in compliance with the License.
7cdf0c1d5Smjnelson#
8cdf0c1d5Smjnelson# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9cdf0c1d5Smjnelson# or http://www.opensolaris.org/os/licensing.
10cdf0c1d5Smjnelson# See the License for the specific language governing permissions
11cdf0c1d5Smjnelson# and limitations under the License.
12cdf0c1d5Smjnelson#
13cdf0c1d5Smjnelson# When distributing Covered Code, include this CDDL HEADER in each
14cdf0c1d5Smjnelson# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15cdf0c1d5Smjnelson# If applicable, add the following below this CDDL HEADER, with the
16cdf0c1d5Smjnelson# fields enclosed by brackets "[]" replaced with your own identifying
17cdf0c1d5Smjnelson# information: Portions Copyright [yyyy] [name of copyright owner]
18cdf0c1d5Smjnelson#
19cdf0c1d5Smjnelson# CDDL HEADER END
20cdf0c1d5Smjnelson#
21cdf0c1d5Smjnelson
22cdf0c1d5Smjnelson#
2387ab3622SRichard Lowe# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24cdf0c1d5Smjnelson#
25cdf0c1d5Smjnelson
26*00ff2212SAndy Fiddaman# Copyright 2018 OmniOS Community Edition (OmniOSce) Association.
27*00ff2212SAndy Fiddaman
28cdf0c1d5Smjnelsoninclude ../../Makefile.tools
29cdf0c1d5Smjnelson
30*00ff2212SAndy FiddamanSUBDIRS=
31*00ff2212SAndy Fiddaman$(BUILDPY2TOOLS)SUBDIRS += py2
32*00ff2212SAndy Fiddaman$(BUILDPY3TOOLS)SUBDIRS += py3
33cdf0c1d5Smjnelson
34*00ff2212SAndy Fiddamanall :=		TARGET= all
35*00ff2212SAndy Fiddamaninstall :=	TARGET= install
36*00ff2212SAndy Fiddamanclean :=	TARGET= clean
37*00ff2212SAndy Fiddamanclobber :=	TARGET= clobber
38*00ff2212SAndy Fiddamanlint :=		TARGET= lint
39cdf0c1d5Smjnelson
40*00ff2212SAndy Fiddamanall install clean clobber lint: $(SUBDIRS)
41cdf0c1d5Smjnelson
42*00ff2212SAndy Fiddaman$(SUBDIRS): FRC
43*00ff2212SAndy Fiddaman	@cd $@; pwd; $(MAKE) $(TARGET)
44cdf0c1d5Smjnelson
45*00ff2212SAndy FiddamanFRC:
46cdf0c1d5Smjnelson
47