xref: /titanic_52/usr/src/tools/onbld/py3/Makefile (revision 93be19b94b8b631e9abb3b71f9415817c441c051)
1*93be19b9SAndy Fiddaman#
2*93be19b9SAndy Fiddaman# CDDL HEADER START
3*93be19b9SAndy Fiddaman#
4*93be19b9SAndy Fiddaman# The contents of this file are subject to the terms of the
5*93be19b9SAndy Fiddaman# Common Development and Distribution License (the "License").
6*93be19b9SAndy Fiddaman# You may not use this file except in compliance with the License.
7*93be19b9SAndy Fiddaman#
8*93be19b9SAndy Fiddaman# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*93be19b9SAndy Fiddaman# or http://www.opensolaris.org/os/licensing.
10*93be19b9SAndy Fiddaman# See the License for the specific language governing permissions
11*93be19b9SAndy Fiddaman# and limitations under the License.
12*93be19b9SAndy Fiddaman#
13*93be19b9SAndy Fiddaman# When distributing Covered Code, include this CDDL HEADER in each
14*93be19b9SAndy Fiddaman# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*93be19b9SAndy Fiddaman# If applicable, add the following below this CDDL HEADER, with the
16*93be19b9SAndy Fiddaman# fields enclosed by brackets "[]" replaced with your own identifying
17*93be19b9SAndy Fiddaman# information: Portions Copyright [yyyy] [name of copyright owner]
18*93be19b9SAndy Fiddaman#
19*93be19b9SAndy Fiddaman# CDDL HEADER END
20*93be19b9SAndy Fiddaman#
21*93be19b9SAndy Fiddaman
22*93be19b9SAndy Fiddaman#
23*93be19b9SAndy Fiddaman# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24*93be19b9SAndy Fiddaman#
25*93be19b9SAndy Fiddaman
26*93be19b9SAndy Fiddaman# Copyright 2010, Richard Lowe
27*93be19b9SAndy Fiddaman# Copyright 2014 Garrett D'Amore <garrett@damore.org>
28*93be19b9SAndy Fiddaman# Copyright 2016, Joyent, Inc.
29*93be19b9SAndy Fiddaman# Copyright 2018 OmniOS Community Edition (OmniOSce) Association.
30*93be19b9SAndy Fiddaman
31*93be19b9SAndy Fiddamaninclude ../Makefile.com
32*93be19b9SAndy Fiddaman
33*93be19b9SAndy FiddamanPYVER = $(PYTHON3_VERSION)
34*93be19b9SAndy FiddamanPYPKGVERS = $(PYTHON3_PKGVERS)
35*93be19b9SAndy FiddamanPYOBJS = $(PYSRCS:%.py=__pycache__/%.cpython$(PYTHON3_PKGVERS).pyc)
36*93be19b9SAndy Fiddaman
37*93be19b9SAndy Fiddamaninclude ../../Makefile.python
38*93be19b9SAndy Fiddaman
39*93be19b9SAndy Fiddamanall:
40*93be19b9SAndy Fiddamaninstall: $(ROOTPYFILES)
41*93be19b9SAndy Fiddaman
42*93be19b9SAndy Fiddamanclean:
43*93be19b9SAndy Fiddaman
44*93be19b9SAndy Fiddamanclobber: clean pyclobber
45*93be19b9SAndy Fiddaman
46