#
# RTL makefile for FPK-PASCAL
# December 1996, Michael Van Canneyt
#
# This one is just a pass-through makefile. Nothing is set here.
# set RTLS to the subdirs where libraries reside.

RTLS = linux

help: 
	@echo Use the top-level makefile. This one just passes arguments.

all:
	@for f in $(RTLS); do cd $$f; $(MAKE) all ; cd .. ; done

install:
	@for f in $(RTLS); do cd $$f; $(MAKE) install ; cd ..; done

clean:
	@for f in $(RTLS); do cd $$f; $(MAKE) clean ; cd ..; done
