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