cpython/Tools/freeze/test/Makefile

12 lines
236 B
Makefile
Raw Normal View History

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