cgal/Installation/examples/makefile

14 lines
217 B
Makefile

all:
@for DIR in *; do \
if test -d "$$DIR"; then \
( cd "$$DIR" && $(MAKE) ) \
fi; \
done
clean:
@for DIR in *; do \
if test -d "$$DIR"; then \
( cd "$$DIR" && $(MAKE) clean ) \
fi; \
done