.PHONY : all cuda clean

all	: cuda

cuda :
	nvcc -ptx $(NVCC_FLAGS) update.cu

clean :
	rm -f *.ptx


include ../../smc.mk
