PROGS = hello1 hello2  hello-thrIndex  hello-thrIndex2 hello-sync  hello-dim  \
	hello-ID  hello-2dim-ID  hello-error  hello-error2  

CC = nvcc
CFLAGS = -g

all: $(PROGS)

%.o: %.cu
	$(CC) $(CFLAGS) -o $@ -c $<

