Python Library Socket Protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. EXAMPLES = $(wildcard *.py)
  2. LOGFILES = ${EXAMPLES:.py=.log}
  3. .PHONY: all
  4. all: $(LOGFILES)
  5. %server.log: %server.py
  6. @echo -n
  7. %client.log: %client.py
  8. python3 $(subst client,server,$<) 1> /dev/null&
  9. python3 $< > $@
  10. clean:
  11. @echo "\e[1m * Example logs...\e[0m"
  12. @rm -f $(LOGFILES)