head	1.1;
access;
symbols
	charm6_1:1.1
	charm_6_0_1:1.1
	charm6_0_1:1.1
	charm6_0:1.1;
locks; strict;
comment	@# @;


1.1
date	2007.10.22.23.27.56;	author cheelee;	state Exp;
branches;
next	;
commitid	5001471d31eb4567;


desc
@@


1.1
log
@New example code with two arrays executing at the same time.
@
text
@CHARMC=../../../../bin/charmc $(OPTS)

OBJS = hello.o

all: hello

hello: $(OBJS)
	$(CHARMC) -language charm++ -o hello $(OBJS)

hello.decl.h: hello.ci
	$(CHARMC)  hello.ci

clean:
	rm -f *.decl.h *.def.h conv-host *.o hello charmrun

hello.o: hello.C hello.decl.h
	$(CHARMC) -c hello.C

test: all
	./charmrun hello +p4 10

bgtest: all
	./charmrun hello +p4 10 +x2 +y2 +z2
@
