cpython/Tools/freeze/test/Makefile

12 lines
236 B
Makefile
Raw Normal View History

2014-03-30 18:18:58 +00:00
# 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)
2014-03-30 19:27:17 +00:00
$(OUTDIR)/ok
2014-03-30 18:18:58 +00:00