############################################################################
# RCS INFORMATION:
#
# 	$RCSfile: Makefile,v $
# 	$Author: brunner $	$Locker:  $		$State: Exp $
#	$Revision: 1.1 $	$Date: 1996/02/05 15:05:49 $
#
############################################################################
# DESCRIPTION:
#
# Makefile for latency test program
#
############################################################################
# REVISION HISTORY:
#
# $Log: Makefile,v $
# Revision 1.1  1996/02/05 15:05:49  brunner
# Initial revision
#
#
############################################################################

PGM=latencyBWtest

CHARMC=$(HOME)/charm/bin/charmc $(OPTS)

all: $(PGM).o
	$(CHARMC) -o $(PGM) $(PGM).o -language converse

$(PGM): $(PGM).o
	$(CHARMC) -o $(PGM) $(PGM).o -language converse

$(PGM).o: $(PGM).c
	$(CHARMC) -c $(PGM).c

clean:
	rm -f conv-host *.o
	rm -f $(PGM) *.TMP.*
	rm -f gmon.out #*#
	rm -f core *~
	rm -f TAGS *.headers

projections:
	make all OPTS='$(OPTS) -execmode projections'

summary:
	make all OPTS='$(OPTS) -execmode summary'

replay:
	make all OPTS='$(OPTS) -execmode replay'
