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


      1 CXX = mpic++
      2 CXXFLAGS = -O1 -Wall -Wextra -Wpedantic -DOMPI_SKIP_MPICXX
      3 .PHONY: clean
      4 
      5 mpi_bsend: mpi_bsend.cpp
      6 	$(CXX) $(CXXFLAGS) -o $@ $<
      7 
      8 clean:
      9 	rm -f mpi_bsend