mirror of
https://github.com/beune/bof_collection
synced 2026-08-24 08:49:35 +00:00
12 lines
215 B
Makefile
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 $@
|