CFLAGS = -g -Wall -framework opencl CC = g++ OPT = -g TARGET=twice twice : twice.o $(CC) $(OPT) $(CFLAGS) -o $@ $? clean: rm -rf *.o $(TARGET)