Files
mscclpp/examples/tutorials/Makefile
Changho Hwang 9650e5c37e Update documentation (#576)
Documentation overhaul
2025-08-07 15:37:37 -07:00

18 lines
408 B
Makefile

TUTORIAL_DIRS := 01-basic-concepts 02-bootstrap 03-memory-channel 04-port-channel
.PHONY: all clean help $(TUTORIAL_DIRS) clean-%
all: $(TUTORIAL_DIRS)
@echo "All tutorials built successfully!"
$(TUTORIAL_DIRS):
@echo "Building tutorial: $@"
@$(MAKE) -C $@ all
clean: $(addprefix clean-, $(TUTORIAL_DIRS))
@echo "All tutorials cleaned!"
clean-%:
@echo "Cleaning tutorial: $*"
@$(MAKE) -C $* clean