Makefile 93 B

1234567
  1. .PHONY: all
  2. SUB_DIRS = js python
  3. all %:
  4. for D in $(SUB_DIRS); do $(MAKE) -C $$D $@ ; done