all: old-style new-style new-style2 kernel-printf

old-style: old-style.cu
	nvcc -o old-style old-style.cu

new-style: new-style.cu
	nvcc -o new-style new-style.cu

new-style2: new-style2.cu
	nvcc -o new-style2 new-style2.cu

kernel-printf: kernel-printf.cu
	nvcc -o kernel-printf kernel-printf.cu
