mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 03:53:32 +01:00
15 lines
311 B
Makefile
15 lines
311 B
Makefile
include $(MODDIR)/make/defs.mk
|
|
|
|
EXE ?= $(shell pwd).py
|
|
EXE_PATH ?= ./$(EXE)
|
|
|
|
all:
|
|
install:
|
|
clean:
|
|
distclean:
|
|
|
|
run:
|
|
python -m $(shell echo $(patsubst %.py,%,$(EXE)) | sed 's%^\./%%; s%/%.%g') $(EXE_ARGS)
|
|
|
|
pyc.clean:
|
|
find . -name '*.pyc' -print0 | xargs -r -0 rm -f
|