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.defs (256B)


      1 # Uncomment the following line to use OpenMP 2.0 features
      2 #OMPFLAG = -DOMPVER2
      3 # Uncomment the following line to use OpenMP 3.0 features
      4 OMPFLAG = -DOMPVER2 -DOMPVER3
      5 
      6 CC=gcc
      7 CFLAGS =  -O1 -lm -fopenmp
      8 LDFLAGS = -O0 -lm -fopenmp
      9 CPP = /usr/bin/cpp
     10 LIBS =