cart-elc

Source code for CART-ELC
git clone git://git.laack.co/cart-elc.git
Log | Files | Refs | README | LICENSE

Makefile (140B)


      1 SCRIPTS := $(wildcard *.py)
      2 
      3 all: $(SCRIPTS)
      4 	@for script in $^; do \
      5 		echo "Running $$script..."; \
      6 		python3 $$script & \
      7 	done; \
      8 	wait