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


      1 CXX = g++
      2 CXXFLAGS = -g -O1 -fopenmp
      3 .PHONY: clean
      4 
      5 all: scenario_1_3 scenario_2
      6 
      7 scenario_1_3: scenario_1_3.cpp
      8 	$(CXX) $(CXXFLAGS) -o $@ $<
      9 
     10 scenario_2: scenario_2.cpp
     11 	$(CXX) $(CXXFLAGS) -o $@ $<
     12 
     13 clean:
     14 	rm -f scenario_1_3 scenario_2