DIRS := $(shell ls -d src/*) ifndef VERBOSE .SILENT: endif all: for dir in $(DIRS); do \ echo "\n"; \ pnpm tsx $$dir/index.ts; \ echo "\n"; \ done echo "All Typescripts examples executed.\n"