1
0
This repository has been archived on 2025-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
Files
irrlicht-archive/examples/Makefile
2020-05-16 23:31:28 +02:00

9 lines
103 B
Makefile

DIRS = $(wildcard [012]* Demo)
all: $(DIRS)
$(DIRS):
-@cd $@ && make clean && make
.PHONY: $(DIRS)