mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 12:03:31 +01:00
Rename the omnipresent MODDIR variable to JWBDIR, since that's more to the point. Signed-off-by: Jan Lindemann <jan@janware.com>
15 lines
277 B
Makefile
15 lines
277 B
Makefile
include $(JWBDIR)/make/defs.mk
|
|
include $(JWBDIR)/make/py-defs.mk
|
|
#include $(JWBDIR)/make/scripts-targets.mk
|
|
#include $(JWBDIR)/make/rules.mk
|
|
|
|
EXE ?= $(firstword $(wildcard main.py runme.py *.py))
|
|
EXE_ARGS ?=
|
|
|
|
all:
|
|
install:
|
|
clean:
|
|
distclean:
|
|
|
|
run:
|
|
$(PYTHON) $(EXE) $(EXE_ARGS)
|