jw-pkg/make/py-run.mk
Jan Lindemann 13fa28e23f make, scripts: Flip some more switches from pathon 2 to 3 (untested!)
This commit flips some more switches from Python 2 to Python 3 in makefiles and
Python code. Build runs through, but it's still likely to break things.

Signed-off-by: Jan Lindemann <jan@janware.com>
2019-06-02 12:28:13 +00:00

15 lines
277 B
Makefile

include $(MODDIR)/make/defs.mk
include $(MODDIR)/make/py-defs.mk
#include $(MODDIR)/make/scripts-targets.mk
#include $(MODDIR)/make/rules.mk
EXE ?= $(firstword $(wildcard main.py runme.py *.py))
EXE_ARGS ?=
all:
install:
clean:
distclean:
run:
$(PYTHON) $(EXE) $(EXE_ARGS)