#Copyright (c) 2004 Kathryn Mohror and Karen Karavanic.  All rights 
# reserved.

#
#  Copyright (c) 1996 Jeff Hollingsworth and Michael Steele. All rights
#  reserved.
#
#  Permission to use, copy, modify, and distribute this software and
#  its documentation for any non-commercial purpose is hereby granted,
#  provided that the above copyright notice appear in all copies. No
#  title to or ownership of the software is hereby transferred.
#
#  NOTICE:  This software is provided ``as is'', without any
#  warranty, including any implied warranty for merchantability or
#  fitness for a particular purpose.  Under no circumstances shall
#  the principals or their agents be liable for any use of, misuse
#  of, or inability to use this software, including incidental and
#  consequential damages.
#



SDIR =  .

CC =	        mpicc	
CFLAGS =	-g 
LDFLAGS = 	-lm 




############################################################################
# Nothing to modify below this line

# Classes of things to Build
PROGS = 	big-message		\
		diffuse-procedure	\
		hot-procedure		\
		intensive-server	\
		random-barrier		\
		small-messages		\
		system-time		\
		wrong-way		\
		ping-pong	

default: $(PROGS)

all: $(PROGS)

clean:
	rm -f *.o $(PROGS) core
