I changed the file as suggested.
***
!$Id:$
subroutine pzeroi(ii,nn)
! * * F E A P * * A Finite Element Analysis Program
!.... Copyright (c) 1984-2022: Regents of the University of California
! All rights reserved
!-----[--.----+----.----+----.-----------------------------------------]
! Modification log Date (dd/mm/year)
! Original version 01/11/2006
! 1. Remove loop on 'n' 30/01/2018
!-----[--.----+----.----+----.-----------------------------------------]
! Purpose: Zero integer array of data
! Inputs:
! nn - Length of array
! Outputs:
! ii(*) - Array with zero values
!-----[--.----+----.----+----.-----------------------------------------]
implicit none
integer :: nn
integer :: ii(nn)
save
do k1 = 1,nn
ii(k1) = 0
end do
end subroutine pzeroi
*****
I am getting the following error when I try to install the program.
--->/home/willkin/Downloads/FEAP_NEW/ver86/program objects now up-to-date<---
makefile:16: recipe for target 'archive' failed
make[1]: *** [archive] Error 1
make[1]: Leaving directory '/home/willkin/Downloads/FEAP_NEW/ver86/program'
makefile:20: recipe for target 'archive' failed
make: *** [archive] Error 2