1
0
Fork 0
design-patterns/ts/Makefile

13 lines
201 B
Makefile

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"