Python Library Stringtools
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Makefile 147B

1234567891011
  1. EXAMPLES = $(wildcard *.py)
  2. LOGFILES = ${EXAMPLES:.py=.log}
  3. .PHONY: all
  4. all: $(LOGFILES)
  5. %.log: %.py
  6. python3 $< > $@
  7. clean:
  8. rm -f $(LOGFILES)