mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-02 20:51:26 +00:00
18 lines
408 B
Makefile
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
|