head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	99.03.15.23.02.31;	author milind;	state dead;
branches;
next	1.1;

1.1
date	99.02.01.23.34.04;	author rbrunner;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Got the hello program using arrays to work. Used CmiAbort in itc++queens.
Fixed generation of ckIdx method for chare and group constructors.
@
text
@CHARMC=$(HOME)/projects/charm/net-hp-cc/bin/charmc -g -save -verbose

OBJS = hello.o Array1D.o ArrayMap.o ArrayElement.o RRMap.o HelloRing.o

all:	hello

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

cifiles:
	$(CHARMC)  hello.ci Array1D.ci ArrayMap.ci ArrayElement.ci \
RRMap.ci HelloRing.ci

clean:
	rm -f *.o hello

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

Array1D.o: Array1D.C Array1D.h
	$(CHARMC) -c Array1D.C

ArrayMap.o: ArrayMap.C ArrayMap.h
	$(CHARMC) -c ArrayMap.C

RRMap.o: RRMap.C RRMap.h ArrayMap.h
	$(CHARMC) -c RRMap.C

ArrayElement.o: ArrayElement.C ArrayElement.h
	$(CHARMC) -c ArrayElement.C

HelloRing.o: HelloRing.C HelloRing.h ArrayElement.h
	$(CHARMC) -c HelloRing.C


@


1.1
log
@Prototype arrays definition
@
text
@@

