mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-python
synced 2026-01-15 09:53:32 +01:00
Rename the omnipresent MODDIR variable to JWBDIR, since that's more to the point. Signed-off-by: Jan Lindemann <jan@janware.com>
22 lines
343 B
Makefile
22 lines
343 B
Makefile
TOPDIR = ../..
|
|
|
|
MAKEFLAGS += --no-builtin-rules
|
|
|
|
INPUT = test.mk
|
|
EXE = $(TOPDIR)/scripts/trim-src.py
|
|
EXE_ARGS = beautify $(INPUT)
|
|
|
|
include $(TOPDIR)/make/proj.mk
|
|
include $(JWBDIR)/make/py-run.mk
|
|
|
|
run: $(INPUT)
|
|
|
|
$(INPUT):
|
|
cp Makefile $@
|
|
clean.test:
|
|
rm -f $(INPUT)
|
|
clean: clean.test
|
|
|
|
help:
|
|
python3 $(EXE) -h
|
|
python3 $(EXE) beautify -h
|