mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
11 lines
235 B
Makefile
11 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
|
|
|