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 (93B)


      1 .PHONY: clean
      2 
      3 sse_vector: sse_vector.c
      4 	gcc -g -O0 -msse -o $@ $^
      5 
      6 clean:
      7 	rm -f sse_vector