Makefile 268 B

1234567891011
  1. CC := pgc++
  2. CFLAGS := -O3 -w -ldl
  3. ACCFLAGS := -Minfo=accel
  4. NVTXLIB := -I/opt/pgi/linux86-64-llvm/2019/cuda/10.1/include/
  5. miniWeather: miniWeather_serial.cpp
  6. ${CC} ${CFLAGS} ${ACCFLAGS} -o miniWeather miniWeather_serial.cpp ${NVTXLIB}
  7. clean:
  8. rm -f *.o miniWeather