# When C++ support is completed, you may want to append c++-hello
# to the list below.
DIRS = float func hello lcd mandel math
export PATH := $(shell pwd)/../../bin:$(PATH)
default: all
all clean install:
@echo "Making examples..."
@for i in $(DIRS); \
do [ -f $$i/Makefile ] && make -C $$i $@ || exit 1; \
done