Skip to content

Commit 2e62387

Browse files
committed
Clean up Makefile
1 parent 4f33ea8 commit 2e62387

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Makefile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# Compile the mppnccombine tool
22
# Edit these flags as needed for your system
33
CPP = pgcc
4-
LIBS = -lnetcdff -lnetcdf -lhdf5 -lhdf5_hl # include netcdf libs
5-
INCLUDE = -I/usr/include/mpich-x86_64
4+
LIBS = -lnetcdff -lnetcdf -lhdf5 -lhdf5_hl -lm # include netcdf libs and math lib
5+
LIBPATH = -L/usr/lib64/mpich/lib
6+
INCPATH = -I/usr/include/mpich-x86_64
67

78
.PHONY: clean
89

910
mppnccombine.x: mppnccombine.c
10-
$(CPP) -O -o mppnccombine.x $(INCLUDE) $(LIBS) $(NCFLAGS) mppnccombine.c
11+
$(CPP) -O -o mppnccombine.x $(LIBPATH) $(INCPATH) $(LIBS) mppnccombine.c
1112

1213
clean:
1314
rm mppnccombine.x

0 commit comments

Comments
 (0)