mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-06 18:30:40 +01:00
9 lines
104 B
Makefile
9 lines
104 B
Makefile
|
DIRS = $(wildcard [0123]* Demo)
|
||
|
|
||
|
all: $(DIRS)
|
||
|
|
||
|
$(DIRS):
|
||
|
-@cd $@ && make clean && make
|
||
|
|
||
|
.PHONY: $(DIRS)
|