mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-28 14:15:30 -04:00
fix broken 64_to_32 conversion
This commit is contained in:
parent
629a99f633
commit
4bceff1769
2 changed files with 14 additions and 0 deletions
|
|
@ -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
12
src/peigs/h/GNUmakefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue