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

SHELL = /bin/sh
SDIR =  .

CC =	        mpicc	
CFLAGS =	-g 
LDFLAGS = 	 
LINKS = 	




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

# Classes of things to Build
PROGS = 	allCount\
                winFenceSync\
                winScpwSync\
		spawnCount\
		childProgram\
		spawnSync\
		spawnWinSync\
		winCreateBlast

default: $(PROGS)

all: $(PROGS)

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

