CXX=dpcpp

default: matrix.cpp
	$(CXX) -g matrix.cpp multiply.cpp -o matrix.dpcpp

clean::
	rm -f matrix.dpcpp *.o
