include $(JWBDIR)/make/defs.mk EXE ?= $(shell $(PWD)).py EXE_PATH ?= ./$(EXE) all: install: clean: distclean: run: python2 -m $(shell echo $(patsubst %.py,%,$(EXE)) | sed 's%^\./%%; s%/%.%g') $(EXE_ARGS) pyc.clean: find . -name '*.pyc' -print0 | xargs -r -0 $(RM) -f