SUBDIRS = System #Programs

# Phoney targets are always considered by gmake to be out-of-date,
# even if a file of the same name should happen to exist.
.PHONEY: subdir-all 

all: subdir-all

clean:
	for i in $(SUBDIRS); do (cd $$i && gmake clean) || exit; done

squeaky:
	for i in $(SUBDIRS); do (cd $$i && gmake squeaky) || exit; done

install:
	for i in $(SUBDIRS); do (cd $$i && gmake install) || exit; done

subdir-all:
	for i in $(SUBDIRS); do (cd $$i && gmake all) || exit; done


count:
	for i in $(SUBDIRS); do (cd $$i && clines *.cc *.h) || exit; done

