Files
Pim Beune d14c71c56f Update
2026-03-23 16:32:58 +01:00

12 lines
215 B
Makefile

# List all directories except 'static' and '.git'
DIRS := $(filter-out static/ .git/,$(wildcard */))
.PHONY: all $(DIRS)
all: $(DIRS)
# Run make in each subdirectory
$(DIRS):
@echo "Entering $@"
@$(MAKE) -C $@