#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
#
PYTHON27 = /usr/bin/python2.7
PYTHON34 = /usr/bin/python3.4
all := TARGET = all
install := TARGET = install
packages := TARGET = install
clean := TARGET = clean
clobber := TARGET = clobber
lint := TARGET = lint
clint := TARGET = clint
pylint := TARGET = pylint
pep8 := TARGET = pep8
test := TARGET = test
test-verbose := TARGET = test-verbose
test-generate := TARGET = test-generate
#
# clear PYTHONPATH when invoking /usr/bin/pkg (we don't want to load any
# pkg python modules from this workspace since they may be out of sync
# with the pkg modules in the root filesystem).
#
PYLINT_VER_CMD = PYTHONPATH= /usr/bin/pkg info pkg:/developer/python/pylint | \
/usr/bin/grep Version | \
/usr/bin/awk -F: '{print $$2}' | /usr/bin/sed -e 's/ //g'
PEP8 = /usr/bin/pep8
JOBS = 4
SUBDIRS=zoneproxy util/mkcert
all: $(SUBDIRS)
$(PYTHON27) setup.py build
clean: $(SUBDIRS)
$(PYTHON27) setup.py clean
@cd pkg; pwd; make clean
clobber: $(SUBDIRS)
$(PYTHON27) setup.py clobber
@cd pkg; pwd; make clobber
#
# run pylint as part of the install target.
# it's the best way to ensure things stay pylint clean.
#
install: $(SUBDIRS)
$(PYTHON27) setup.py install
$(PYTHON34) setup.py install
lint:
$(PYTHON27) setup.py lint
@cd zoneproxy; pwd; make lint
clint:
$(PYTHON27) setup.py clint
@cd zoneproxy; pwd; make lint
pylint: install
PYLINT_VER=$(PYLINT_VER_CMD:sh) $(PYTHON27) setup.py pylint
PYLINT_VER=$(PYLINT_VER_CMD:sh) $(PYTHON27) setup.py pylint_py3k
pep8:
$(PEP8) --statistics --count `cat tests/pep8-whitelist.txt`
#
# This rule propagates the current make target through all of the
# subdirectories in $SUBDIRS.
#
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
# Use the bits we just built to create the packages.
packages: install pylint pep8
@cd pkg; pwd; $(MAKE) $(TARGET) check \
PATH=$$(hg root)/proto/root_$$(uname -p)/usr/bin:$$PATH
test:
$(PYTHON27) tests/run.py -j ${JOBS} -v
$(PYTHON34) tests/run.py -j ${JOBS} -v
test-verbose:
$(PYTHON27) setup.py test -v
test-generate:
$(PYTHON27) setup.py test -g
FRC: