-include ../../common.mk
CHARMC=../../../bin/charmc

all: pgm

pgm: iotest.ci iotest.C
	$(CHARMC) iotest.ci
	$(CHARMC) -g iotest.C -o $@ -module CkIO

test: pgm
	$(call run, ./pgm +p8 8 )

clean:
	rm -f *.o *.decl.h *.def.h pgm test*
