cgal/Installation/examples/GNUmakefile

17 lines
227 B
Makefile

all:
@for DIR in *; do \
if test "x$$DIR" != xGNUmakefile; then \
$(MAKE) -C $$DIR; \
fi; \
done
clean:
@for DIR in *; do \
if test "x$$DIR" != xGNUmakefile; then \
$(MAKE) -C $$DIR; \
fi; \
done