We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f33ea8 commit 2e62387Copy full SHA for 2e62387
Makefile
@@ -1,13 +1,14 @@
1
# Compile the mppnccombine tool
2
# Edit these flags as needed for your system
3
CPP = pgcc
4
-LIBS = -lnetcdff -lnetcdf -lhdf5 -lhdf5_hl # include netcdf libs
5
-INCLUDE = -I/usr/include/mpich-x86_64
+LIBS = -lnetcdff -lnetcdf -lhdf5 -lhdf5_hl -lm # include netcdf libs and math lib
+LIBPATH = -L/usr/lib64/mpich/lib
6
+INCPATH = -I/usr/include/mpich-x86_64
7
8
.PHONY: clean
9
10
mppnccombine.x: mppnccombine.c
- $(CPP) -O -o mppnccombine.x $(INCLUDE) $(LIBS) $(NCFLAGS) mppnccombine.c
11
+ $(CPP) -O -o mppnccombine.x $(LIBPATH) $(INCPATH) $(LIBS) mppnccombine.c
12
13
clean:
14
rm mppnccombine.x
0 commit comments