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


      1 CXX = g++
      2 .PHONY: clean
      3 
      4 counter: counter.cpp
      5 	$(CXX) -fopenmp -o $@ $<
      6 
      7 clean:
      8 	rm -f counter