fix broken 64_to_32 conversion

This commit is contained in:
edoapra 2023-10-24 15:50:03 -07:00
parent 629a99f633
commit 4bceff1769
No known key found for this signature in database
GPG key ID: 48E12DA1EDE9E1B0
2 changed files with 14 additions and 0 deletions

View file

@ -45,12 +45,14 @@ sngl_to_dbl dbl_to_sngl:
(cd ./src/f77; $(MAKE) 64_to_32)
(cd ./comm; $(MAKE) 64_to_32)
(cd ./ctof; $(MAKE) 64_to_32)
(cd ./h; $(MAKE) 64_to_32)
32_to_64:
(cd ./src/c; $(MAKE) 32_to_64)
(cd ./src/f77; $(MAKE) 32_to_64)
(cd ./comm; $(MAKE) 32_to_64)
(cd ./ctof; $(MAKE) 32_to_64)
(cd ./h; $(MAKE) 32_to_64)
depend:
@echo No dependencies in include

12
src/peigs/h/GNUmakefile Normal file
View file

@ -0,0 +1,12 @@
## $Id$
include ../../config/makefile.h
include ../DEFS
CNFDIR := $(NWCHEM_TOP)/src/config
.PHONY: 64_to_32 32_to_64
64_to_32:
$(CNFDIR)/64_to_32 blas_lapack.h peigs_types.h
32_to_64:
$(CNFDIR)/32_to_64 blas_lapack.h peigs_types.h