PROGS = add-common1 add-common2

CC = nvcc
CFLAGS = -g

all: $(PROGS)

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

