New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Makefile in branches/2016/dev_HPC_Gyre_benchmark_test/NEMOGCM/TOOLS/COUNTERS/TESTS – NEMO

source: branches/2016/dev_HPC_Gyre_benchmark_test/NEMOGCM/TOOLS/COUNTERS/TESTS/Makefile @ 6582

Last change on this file since 6582 was 6582, checked in by timgraham, 8 years ago

Commit Martin's changes to COUNTERS tool including a new timing/performance module that does not use string comparisons.

File size: 357 bytes
Line 
1FC=gfortran
2PAPI_INC=/users/home/opt/papi/papi-5.1.0/include/
3PAPI_LIB=/users/home/opt/papi/papi-5.1.0/lib/
4COUNTERS_LIB=../
5
6all:
7#  ${FC} -I${PAPI_INC} -L${PAPI_LIB} -L${COUNTERS_LIB} -lperf_regions -o nemo_test nemo_test.F90  -lpapi
8   ${FC} -g -I${PAPI_INC} -L${PAPI_LIB} -L${COUNTERS_LIB} ../*.o -o nemo_test nemo_test.F90  -lpapi
9
10clean :
11   rm nemo_test
12
Note: See TracBrowser for help on using the repository browser.