PROGS = hello hello-thrId hello-sync

CC = nvcc
CFLAGS = -g

all: $(PROGS)

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

