# #----------------------------------------------------------------------------- # # ORTHO - programs for ab-initio calculations in localized orbitals # Copyright (C) 2008 Peter Reinhardt (Univ. Paris VI, France) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # #---------------------------------------------------------------------------- # .SUFFIXES: .SUFFIXES: .h .f .o FC = please edit your Makefile: put here your Fortran Compiler O = your optimization parameters BINDIR= your directory for the binaries #------------------------------------------------------------------- LIB=trbak3.f tred3.f epslon.f rs.f tql2.f pythag.f tred1.f rsp.f \ tqlrat.f tred2.f unfor_io.f date.f timer.f all: geninput intcal ors lpmb vind epsnes icmp @echo " Congratulation, compilation was successful " # geninput: $(FC) $O -o $(BINDIR)/geninput geninput.f $(LIB) ors: $(FC) $O -o $(BINDIR)/ors ors.f $(LIB) lpmb: $(FC) $O -o $(BINDIR)/lpmb lpmb.f $(LIB) vind: $(FC) $O -o $(BINDIR)/vind vind.f $(LIB) epsnes: $(FC) $O -o $(BINDIR)/epsnes epsnes.f $(LIB) icmp: $(FC) $O -o $(BINDIR)/icmp icmp.f $(LIB) intcal: $(FC) $O -o $(BINDIR)/intcal intcal.f $(LIB)