#!/usr/local/gnu/bin/make
#
# This make file builds the application test programs
#
# History
# -------
# $Log: Makefile,v $
# Revision 1.10  1998/03/17  18:22:33  dieter
# Added gu_false to list of apps to compile.
#
# Revision 1.9  1998/03/02  19:57:10  dieter
# Added seq_test to list of apps to compile.
#
# Revision 1.8  1998/02/19  20:20:55  dieter
# Do not use the -C option becuase Sun make does not support it.
#
# Revision 1.7  1997/09/22  21:25:41  dieter
# Chages for new directory structure.
#
# Revision 1.6  1997/06/13  21:55:30  dieter
# Removed ticket from list of test programs.  It never compiles
# correctly, so there is no point in leaving it in.
#
# Revision 1.5  1997/05/08  17:06:01  dieter
# Removed refresh target.  It is now handled by griff's Makefile.refresh.
#
# Revision 1.4  1997/04/12  01:49:08  dieter
# Check out makefiles in subdiretories when they are created.
# Loop on TEST_PROGS, not SUBDIRS.
#
# Revision 1.3  1997/04/11  21:27:54  dieter
# Added refresh target
#
# Revision 1.2  1997/04/10  22:37:30  dieter
# Previous version was the wrong Makefile, this one is right.
#
#
APPS= hello_ran matmul sor_ran water_seq hello_seq sor_seq water_ran seq_test \
	gu_false

all: dummy
	for dir in $(APPS); do cd $$dir; $(MAKE); cd ..; done

clean: dummy
	for dir in $(APPS); do cd $$dir; $(MAKE) clean; cd ..; done

depend: dummy
	for dir in $(APPS); do cd $$dir; $(MAKE) depend; cd ..; done

install: dummy
	for dir in $(APPS); do cd $$dir; $(MAKE) install; cd ..; done

dummy:
