blob: bc0aada13f2b2873bcd4679226dfb7cc8f2c08c1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# 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)
|