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