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


1.1
date	2007.01.11.19.10.58;	author rblake;	state Exp;
branches;
next	;
commitid	366745a68ba24567;


desc
@@


1.1
log
@Adding a new example/test case showing 2d dense array initialization.
@
text
@CHARMC=../../../bin/charmc $(OPTS)

OBJS = jacobi2d.o

all: jacobi2d

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

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

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

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

test: all
	./charmrun jacobi2d +p4 10

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