mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-python
synced 2026-01-15 09:53:32 +01:00
22 lines
448 B
Makefile
22 lines
448 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 $(MODDIR)/make/py-run.mk
|
|
|
|
run: $(INPUT)
|
|
|
|
$(INPUT):
|
|
cp Makefile $@
|
|
clean.test:
|
|
rm -f $(INPUT)
|
|
clean: clean.test
|
|
|
|
help:
|
|
python $(EXE) -h
|
|
python $(EXE) beautify -h
|