http://www.ccl.net/cca/software/SOURCES/FORTRAN/gar2ped/index.shtml
I compiled it successfully in a RedHat Linux and Ubuntu by...
modify Makefile:
- FFLAGS = -fd-lines-as-comments -fdollar-ok -fdefault-real-8 -static
- DEST= "here your directory"
- replace all f77 by gfortran
- LDFLAGS= -L/usr/lib -lgfortran
change in
main.f:
2 FORMAT($,'identification code of the system ? ')
by
2 FORMAT('identification code of the system ? ', $)
and change in
pullarc.f:
2 FORMAT($,'identification code of the system ? ')
by
2 FORMAT('identification code of the system ? ', $)
and in
pullarc.f:
3 format($,' Is this the archive entry you want? ')
by
3 format(' Is this the archive entry you want? ',$)
and run a 'make FC=gfortran'
** I can not provide support for the use or modification of the code, please contact to original authors. Thanks.