• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Makefile to test freeze
2# set PYTHON to path of Python interpreter to test
3PYTHON=python
4# set OUTDIR to the temp directory for freeze
5OUTDIR=outdir
6
7test:
8	$(PYTHON) ../freeze.py -o $(OUTDIR) ok.py
9	make -C $(OUTDIR)
10	$(OUTDIR)/ok
11
12