CC=nvcc
CFLAGS=
LDFLAGS=

all: daxpy

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

clean:
	rm -f *~ daxpy
