mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
12 lines
235 B
Makefile
12 lines
235 B
Makefile
# Makefile to test freeze
|
|
# set PYTHON to path of Python interpreter to test
|
|
PYTHON=python
|
|
# set OUTDIR to the temp directory for freeze
|
|
OUTDIR=outdir
|
|
|
|
test:
|
|
$(PYTHON) ../freeze.py -o $(OUTDIR) ok.py
|
|
make -C $(OUTDIR)
|
|
$(OUTDIR)/ok
|
|
|