I have tried to compile an ARWPost software many times but ARWPost.exe didn’t exist. Finally, I have updated something in file configure.arwp & src/Makefile. You can see what I have updated in those files below.
configure.arwp
From
CPP = /lib/cpp -C -P -traditional
To
CPP = /lib/cpp -P -traditional
src/Makefile
ARWpost.exe: $(OBJS)
$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $(OBJS) \
-L$(NETCDF)/lib -I$(NETCDF)/include –lnetcdf
To
ARWpost.exe: $(OBJS)
$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $(OBJS) \
-L$(NETCDF)/lib -I$(NETCDF)/include –lnetcdff
After I have updated, I can compile ARWPost and get ARWPost.exe
Hope this article can help you..