# RetroForth                                          http://www.retroforth.org
# -----------------------------------------------------------------------------

include ../config

.PHONY: $(UIS) ports

ports: $(UIS)

$(UIS):
	${MAKE} -C $@

clean:
	for dir in $(UIS); \
	do \
	  if [ -d "$$dir" ]; then \
	    $(MAKE) -C $$dir -i clean; \
	  fi \
	done
