You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
66 lines
2.0 KiB
Makefile
66 lines
2.0 KiB
Makefile
PHONY=check clean dist distclean test test-unit test-functional rmChangeLog clean_pyc nosetests
|
|
|
|
GIT2CL ?= git2cl
|
|
PYTHON ?= python
|
|
|
|
PYTHON_VERSION = $(shell $(PYTHON) -V | cut -d ' ' -f 2 | cut -d'.' -f1,2)
|
|
NATIVE_CHECK = check-$(PYTHON_VERSION)
|
|
|
|
# Set COMPILE='--compile' to force compilation before check
|
|
COMPILE ?=
|
|
|
|
#: Run working tests from Python 2.7
|
|
check-2.7: check-short-2.7 check-bytecode-2.5 check-2.7-ok
|
|
|
|
#: Run working tests from Python 3.4
|
|
check-3.4: check-short-3.4 check-short-2.7 check-bytecode-2.5 check-bytecode-3.2
|
|
|
|
check: check-short
|
|
@$(PYTHON) -V && PYTHON_VERSION=`$(PYTHON) -V 2>&1 | cut -d ' ' -f 2 | cut -d'.' -f1,2`; \
|
|
$(MAKE) check-$$PYTHON_VERSION
|
|
|
|
check-short:
|
|
@$(PYTHON) -V && PYTHON_VERSION=`$(PYTHON) -V 2>&1 | cut -d ' ' -f 2 | cut -d'.' -f1,2`; \
|
|
$(MAKE) check-short-$$PYTHON_VERSION
|
|
|
|
#: Check deparsing only, but from a different Python version
|
|
check-disasm:
|
|
$(PYTHON) dis-compare.py
|
|
|
|
#: Check deparsing only, from Python 2.5
|
|
check-bytecode-2.5:
|
|
$(PYTHON) test_pythonlib.py --bytecode-2.5
|
|
|
|
|
|
#: Check deparsing only, from Python 3.2
|
|
check-bytecode-3.2:
|
|
$(PYTHON) test_pythonlib.py --bytecode-3.2
|
|
|
|
#: short tests for bytecodes only for this version of Python
|
|
check-native-short:
|
|
$(PYTHON) test_pythonlib.py --bytecode-$(PYTHON_VERSION) --verify $(COMPILE)
|
|
|
|
#: Short, quickly-running Python 2.7 programs. Useful in debugging grammar problems
|
|
check-short-2.7:
|
|
$(PYTHON) test_pythonlib.py --bytecode-2.7 --verify $(COMPILE)
|
|
|
|
#: Short, quickly-running Python 2.7 programs. Useful in debugging grammar problems
|
|
check-short-3.4:
|
|
$(PYTHON) test_pythonlib.py --bytecode-3.4 --verify $(COMPILE)
|
|
|
|
#: Run longer Python 2.7's lib files known to be okay
|
|
check-2.7-ok:
|
|
$(PYTHON) test_pythonlib.py --ok-2.7 --verify $(COMPILE)
|
|
|
|
clean: clean-py-dis clean-dis clean-unverified
|
|
|
|
clean-dis:
|
|
find . -name '*_dis' -exec rm -v '{}' ';'
|
|
|
|
clean-unverified:
|
|
find . -name '*_unverified' -exec rm -v '{}' ';'
|
|
|
|
#: Clean temporary compile/decompile/verify direcotries in /tmp
|
|
clean-py-dis:
|
|
rm -fr /tmp/py-dis-* || true
|