.PHONY : all cuda clean

all : cuda

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

clean :
	rm -f *.ptx

include ../smc.mk
