CC=nvc
CFLAGS=-acc=gpu -Minfo=accel -gpu=mem:managed
LDFLAGS=

all: daxpy

daxpy: daxpy.c
	${CC} ${CFLAGS} -o $@ $^

clean:
	rm -f *~ daxpy
