mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 20:13:32 +01:00
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>
15 lines
277 B
Makefile
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)
|