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