cs205-lecture-examples

Example codes used during Harvard CS205 lectures
git clone https://git.0xfab.ch/cs205-lecture-examples.git
Log | Files | Refs | README | LICENSE

Makefile (83B)


      1 .PHONY: clean
      2 
      3 main: add_kernel_grid.cu
      4 	nvcc -O2 -o $@ $<
      5 
      6 clean:
      7 	rm -f main *.o